diff --git a/headers/posix/stdlib.h b/headers/posix/stdlib.h index 9db9b3011f..3ffec9578a 100644 --- a/headers/posix/stdlib.h +++ b/headers/posix/stdlib.h @@ -1,15 +1,17 @@ +/* + * Copyright 2002-2006, Haiku Inc. All Rights Reserved. + * Distributed under the terms of the MIT License. + */ #ifndef _STDLIB_H_ #define _STDLIB_H_ -/* -** Distributed under the terms of the OpenBeOS License. -*/ -#include -#include -#include -#include -#include + #include +#include +#include +#include +#include +#include #define RAND_MAX 0x7fffffff @@ -84,9 +86,6 @@ extern unsigned long strtoul(const char *string, char **end, int base); extern long long strtoll(const char *string, char **end, int base); extern unsigned long long strtoull(const char *string, char **end, int base); -// ToDo: we will eventually need this -//extern int __ctype_get_mb_cur_max(void); - /* random number generation */ extern void srand(unsigned int seed); extern int rand(void);