diff options
author | 2015-03-16 00:12:37 +0000 | |
---|---|---|
committer | 2015-03-16 00:12:37 +0000 | |
commit | a638de8d475a19a09a0b3b926a2df2769dff6e31 (patch) | |
tree | 2f1a0d28a75278d27e78aaff9ba6a319ba76ea7d /lib/libsqlite3/tsrc/pthread_stub.c | |
parent | Merge conflicts (diff) | |
download | wireguard-openbsd-a638de8d475a19a09a0b3b926a2df2769dff6e31.tar.xz wireguard-openbsd-a638de8d475a19a09a0b3b926a2df2769dff6e31.zip |
Bump major to 29, regen .pc and header with new version info
Diffstat (limited to 'lib/libsqlite3/tsrc/pthread_stub.c')
-rw-r--r-- | lib/libsqlite3/tsrc/pthread_stub.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libsqlite3/tsrc/pthread_stub.c b/lib/libsqlite3/tsrc/pthread_stub.c index 995c9ca36e2..2850374b60b 100644 --- a/lib/libsqlite3/tsrc/pthread_stub.c +++ b/lib/libsqlite3/tsrc/pthread_stub.c @@ -16,6 +16,8 @@ static int _sqlite_zero_stub() } WEAKALIAS(pthread_t pthread_self(void), _sqlite_self_stub); +WEAKALIAS(int pthread_join(pthread_t, void **), _sqlite_zero_stub); +WEAKALIAS(int pthread_create(pthread_t *, const pthread_attr_t *, void *(*) (void *), void *), _sqlite_zero_stub); WEAKALIAS(int pthread_mutex_init(pthread_mutex_t *a, const pthread_mutexattr_t *b), _sqlite_zero_stub); WEAKALIAS(int pthread_mutex_destroy(pthread_mutex_t *a), _sqlite_zero_stub); WEAKALIAS(int pthread_mutex_lock(pthread_mutex_t *a), _sqlite_zero_stub); |