diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-08-06 20:09:51 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-08-06 20:09:51 -0400 |
commit | 98acf04fc00cbded6169056f2cd541d31725c091 (patch) | |
tree | f792014c7cbc4deee8c3de9b511d9e7329f2bf0d /src/internal | |
parent | 338b663ddb64ecf8a62ad0d1020a29587e0ca81b (diff) | |
download | musl-98acf04fc00cbded6169056f2cd541d31725c091.tar.gz musl-98acf04fc00cbded6169056f2cd541d31725c091.tar.xz musl-98acf04fc00cbded6169056f2cd541d31725c091.zip |
use weak aliases rather than function pointers to simplify some code
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/libc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/internal/libc.h b/src/internal/libc.h index 929ff97a..07ed70cd 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -6,10 +6,8 @@ struct __libc { int *(*errno_location)(void); - void (*testcancel)(void); int threaded; int canceldisable; - void (*fork_handler)(int); int (*atexit)(void (*)(void)); void (*fini)(void); void (*ldso_fini)(void); |