aboutsummaryrefslogtreecommitdiffstats
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-09-02 19:45:09 +0200
committerMattias Andrée <maandree@operamail.com>2015-09-02 19:45:09 +0200
commitf252c29710f71e7c260d9e866c8d4eef885705c3 (patch)
tree22614e2bfc48b2901055484eed2f049d9ec4104e /include/stdlib.h
parentm (diff)
downloadslibc-f252c29710f71e7c260d9e866c8d4eef885705c3.tar.gz
slibc-f252c29710f71e7c260d9e866c8d4eef885705c3.tar.bz2
slibc-f252c29710f71e7c260d9e866c8d4eef885705c3.tar.xz
fix some warnings and errors
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--include/stdlib.h17
1 files changed, 14 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index fd78d27..9340201 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -65,7 +65,8 @@
* @return The quotient in `.quot`, and
* the remainder in `.rem`.
*/
-div_t div(int, int);
+div_t div(int, int)
+ __GCC_ONLY(__attribute__((const)));
/**
* Perform an integer division and return
@@ -76,7 +77,8 @@ div_t div(int, int);
* @return The quotient in `.quot`, and
* the remainder in `.rem`.
*/
-ldiv_t ldiv(long, long);
+ldiv_t ldiv(long, long)
+ __GCC_ONLY(__attribute__((const)));
/**
* Perform an integer division and return
@@ -87,7 +89,16 @@ ldiv_t ldiv(long, long);
* @return The quotient in `.quot`, and
* the remainder in `.rem`.
*/
-lldiv_t lldiv(long long, long long);
+lldiv_t lldiv(long long, long long)
+ __GCC_ONLY(__attribute__((const)));
+
+
+
+/* TODO implement rand-functions */
+#define RAND_MAX 1
+int rand(void);
+int rand_r(unsigned int* seed);
+void srand(unsigned int seed);