diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-05-03 23:13:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-05-03 23:13:04 +0000 |
commit | b485dca22f539c98c43e7d7ebcbed554dadec5cf (patch) | |
tree | 30333b6a6fa8317f6d8ffb73bb936e79ba81c906 /test/malloc/realloc-can-shrink.c | |
parent | 3f0fbd59eb2d5bf9e360dba515ce12e9581e2be4 (diff) | |
download | uClibc-alpine-b485dca22f539c98c43e7d7ebcbed554dadec5cf.tar.bz2 uClibc-alpine-b485dca22f539c98c43e7d7ebcbed554dadec5cf.tar.xz |
give proper prototypes
Diffstat (limited to 'test/malloc/realloc-can-shrink.c')
-rw-r--r-- | test/malloc/realloc-can-shrink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/malloc/realloc-can-shrink.c b/test/malloc/realloc-can-shrink.c index 7df9835e9..33249db42 100644 --- a/test/malloc/realloc-can-shrink.c +++ b/test/malloc/realloc-can-shrink.c @@ -4,7 +4,7 @@ #define LARGE_BUFFER (1 << 20) /* idea is to span a lot of pages */ -int main() +int main(int argc, char *argv[]) { int count = 20; char *ptr = NULL; |