Fix comment typo
All checks were successful
continuous-integration/drone/push Build is passing

My bad :(
This commit is contained in:
apio 2023-01-07 11:31:08 +01:00
parent b70bbc0ba6
commit 12dc96b4a5
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -63,13 +63,13 @@ extern "C"
/* Register a handler to be run at normal program termination. */ /* Register a handler to be run at normal program termination. */
int atexit(void (*func)(void)); 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); 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); 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); long long atoll(const char* s);
double atof(const char*); double atof(const char*);