diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-05-04 14:13:17 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-05-04 14:13:17 +0000 |
commit | 4655544cb6de06a4a83c09c4d79dfb54fbde8f00 (patch) | |
tree | 48622549ccdfbca1f17c74eebbff2b4db3d839b8 /libc/stdlib | |
parent | b485dca22f539c98c43e7d7ebcbed554dadec5cf (diff) |
- commentary typo fix
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, |