diff options
author | markm <markm@FreeBSD.org> | 2002-10-23 14:18:07 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-10-23 14:18:07 +0000 |
commit | 372be1a3e11c2a1c5995fdc5ef84e8a49d9977b7 (patch) | |
tree | b1203308ef2b90cb5132ff12865e836ca32e84df /include | |
parent | 97ccd4c7eb50cf3bc89cb6cbd22676b5628e37f9 (diff) | |
download | FreeBSD-src-372be1a3e11c2a1c5995fdc5ef84e8a49d9977b7.zip FreeBSD-src-372be1a3e11c2a1c5995fdc5ef84e8a49d9977b7.tar.gz |
Make the first argument of getbsize a size_t* instead of an int*, as this is what the quantity actually is. Fix an easy const while I'm here.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index b8ddded..f1beaaa 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -227,7 +227,7 @@ __uint32_t arc4random(void); void arc4random_addrandom(unsigned char *dat, int datlen); void arc4random_stir(void); -char *getbsize(int *, long *); +char *getbsize(size_t *, long *); /* getcap(3) functions */ char *cgetcap(char *, const char *, int); int cgetclose(void); |