summaryrefslogtreecommitdiff
path: root/libpthread/include/pthread.h
diff options
context:
space:
mode:
authormarcus <marcus>2004-03-18 02:44:20 +0000
committermarcus <marcus>2004-03-18 02:44:20 +0000
commit82dcb58429439e48e973c6b9772f60d27db15d89 (patch)
treef10beac43fb87c25dc71af4e654da03c71ad8e28 /libpthread/include/pthread.h
parentfc975a0a67947f11ef0ac09278ae16b6c68d1bf3 (diff)
2004-03-17 Marcus Brinkmann <marcus@gnu.org>
* libpthread: New directory, populated with Neal H. Walfields pthread implementation.
Diffstat (limited to 'libpthread/include/pthread.h')
-rw-r--r--libpthread/include/pthread.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libpthread/include/pthread.h b/libpthread/include/pthread.h
new file mode 100644
index 0000000..1d4d3c7
--- /dev/null
+++ b/libpthread/include/pthread.h
@@ -0,0 +1,7 @@
+#ifndef _PTHREAD_H
+#include <pthread/pthread.h>
+
+extern int __pthread_mutex_lock (pthread_mutex_t *__mutex);
+extern int __pthread_mutex_unlock (pthread_mutex_t *__mutex);
+
+#endif