diff options
Diffstat (limited to 'libc/stdlib')
-rw-r--r-- | libc/stdlib/_atexit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/_atexit.c b/libc/stdlib/_atexit.c index 5b290c928..a27a4a199 100644 --- a/libc/stdlib/_atexit.c +++ b/libc/stdlib/_atexit.c @@ -112,7 +112,7 @@ int old_atexit(aefuncp func) { /* * glibc casts aefuncp to cxaefuncp. - * This seems dodgy, but I guess callling a function with more + * This seems dodgy, but I guess calling a function with more * parameters than it needs will work everywhere? */ return __cxa_atexit((cxaefuncp)func, NULL, |