From 12dc96b4a57105799ebf95b5aa609a9d233bac8a Mon Sep 17 00:00:00 2001 From: apio Date: Sat, 7 Jan 2023 11:31:08 +0100 Subject: [PATCH] Fix comment typo My bad :( --- libc/include/stdlib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h index 4e4b3e56..8f8cbf07 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -63,13 +63,13 @@ extern "C" /* Register a handler to be run at normal program termination. */ int atexit(void (*func)(void)); - /* Parse a decimal integer from the a string. */ + /* Parse a decimal integer from a string. */ int atoi(const char* s); - /* Parse a decimal integer from the a string. */ + /* Parse a decimal integer from a string. */ long atol(const char* s); - /* Parse a decimal integer from the a string. */ + /* Parse a decimal integer from a string. */ long long atoll(const char* s); double atof(const char*);