diff options
| author | otto <> | 2006-05-16 05:47:13 +0000 |
|---|---|---|
| committer | otto <> | 2006-05-16 05:47:13 +0000 |
| commit | cf134702987ee70893fa1a4f6971346f1a57c1f7 (patch) | |
| tree | 0d164affc439a568e42df9b63992ccb4e43cc4b0 /src/regress/lib/libc/malloc/malloc_ulimit1 | |
| parent | 18756a40ff21d843e407ceffbdf5be0c1c941b86 (diff) | |
| download | openbsd-cf134702987ee70893fa1a4f6971346f1a57c1f7.tar.gz openbsd-cf134702987ee70893fa1a4f6971346f1a57c1f7.tar.bz2 openbsd-cf134702987ee70893fa1a4f6971346f1a57c1f7.zip | |
Don't forget to return 0 on success, doh.
Diffstat (limited to 'src/regress/lib/libc/malloc/malloc_ulimit1')
| -rw-r--r-- | src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c b/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c index faa98c7bd6..99e805e8e1 100644 --- a/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c +++ b/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: malloc_ulimit1.c,v 1.1 2006/04/18 19:03:30 otto Exp $ */ | 1 | /* $OpenBSD: malloc_ulimit1.c,v 1.2 2006/05/16 05:47:13 otto Exp $ */ |
| 2 | 2 | ||
| 3 | /* Public Domain, 2006, Otto Moerbeek <otto@drijf.net> */ | 3 | /* Public Domain, 2006, Otto Moerbeek <otto@drijf.net> */ |
| 4 | 4 | ||
| @@ -40,4 +40,5 @@ main() | |||
| 40 | free(p); | 40 | free(p); |
| 41 | free(malloc(4096)); | 41 | free(malloc(4096)); |
| 42 | } | 42 | } |
| 43 | return (0); | ||
| 43 | } | 44 | } |
