diff options
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/libc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/internal/libc.h b/src/internal/libc.h index 07ed70cd..b81c9ae7 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -5,7 +5,7 @@ #include <stdio.h> struct __libc { - int *(*errno_location)(void); + void *main_thread; int threaded; int canceldisable; int (*atexit)(void (*)(void)); @@ -14,7 +14,6 @@ struct __libc { volatile int threads_minus_1; int ofl_lock; FILE *ofl_head; - void *main_thread; }; |