diff options
Diffstat (limited to 'linuxthreads/lockfile.c')
-rw-r--r-- | linuxthreads/lockfile.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linuxthreads/lockfile.c b/linuxthreads/lockfile.c index 38fa3fba86..2654cd577e 100644 --- a/linuxthreads/lockfile.c +++ b/linuxthreads/lockfile.c @@ -26,6 +26,12 @@ #include "../libio/libioP.h" #endif +#ifndef SHARED +/* We need a hook to force this file to be linked in when static + libpthread is used. */ +const int __pthread_provide_lockfile = 0; +#endif + void __flockfile (FILE *stream) { |