| author | Rich Felker <dalias@aerifal.cx> | 2018年09月12日 10:19:54 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2018年09月12日 18:40:35 -0400 | 
| commit | 5f12ffe1239a5e4f8d4e98e2dff4e191a71f4693 (patch) | |
| tree | 39d2397a4c158aa45e26538b0798fe2e23e0d431 /src/internal/libc.h | |
| parent | 09e87db555045bf3bcef69c692df24d13b2856fe (diff) | |
| download | musl-5f12ffe1239a5e4f8d4e98e2dff4e191a71f4693.tar.gz | |
| -rw-r--r-- | src/internal/libc.h | 6 | 
| diff --git a/src/internal/libc.h b/src/internal/libc.h index 0a279184..10bd66bd 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -51,12 +51,6 @@ extern char *__progname, *__progname_full;  extern hidden const char __libc_version[]; -/* Designed to avoid any overhead in non-threaded processes */ -hidden void __lock(volatile int *); -hidden void __unlock(volatile int *); -#define LOCK(x) __lock(x) -#define UNLOCK(x) __unlock(x) -  hidden void __synccall(void (*)(void *), void *);  hidden int __setxid(int, int, int, int); |