X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Finternal%2Flibc.h;h=6828f8b6dba4ecbb3f61c704b20b1ee78dd2d1ed;hb=537d33d33478034b62928e5cacf397b049ac78ab;hp=c83fcafe456953b8ddd88ada9ae515ff658396e6;hpb=bf619d82c82052741323aa63c107fbd346c8aaba;p=musl diff --git a/src/internal/libc.h b/src/internal/libc.h index c83fcafe..6828f8b6 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -5,20 +5,19 @@ #include struct __libc { - void (*lock)(volatile int *); + int *(*errno_location)(void); void (*cancelpt)(int); + void (*lock)(volatile int *); + void (*lockfile)(FILE *); + void (*fork_handler)(int); + void (*sigtimer)(); int (*atexit)(void (*)(void)); void (*fini)(void); void (*ldso_fini)(void); - int *(*errno_location)(void); volatile int threads_minus_1; + int ofl_lock; int (*rsyscall)(int, long, long, long, long, long, long); - void (**tsd_keys)(void *); - void (*fork_handler)(int); FILE *ofl_head; - int ofl_lock; - void (*lockfile)(FILE *); - void (*sigtimer)(); };