diff options
| author | Mark Murray <markm@FreeBSD.org> | 2003-10-18 10:04:16 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2003-10-18 10:04:16 +0000 |
| commit | 547fa0d9b785fb498d3d0db63618b781d2b83591 (patch) | |
| tree | 204484574f03753da73a26a0ec8c893e61e56e98 /lib/libutil/stub.c | |
| parent | 804b0f979adf5d92dc50561f464dac664a06d0a8 (diff) | |
Notes
Diffstat (limited to 'lib/libutil/stub.c')
| -rw-r--r-- | lib/libutil/stub.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libutil/stub.c b/lib/libutil/stub.c index ef1927639774..ec78a3503609 100644 --- a/lib/libutil/stub.c +++ b/lib/libutil/stub.c @@ -29,14 +29,16 @@ __FBSDID("$FreeBSD$"); #include <stdio.h> #include <stdlib.h> +#include <unistd.h> /* * Stub out what's in -lcrypt. */ #pragma weak crypt_set_format +/* ARGSUSED */ int -crypt_set_format(const char *f) { +crypt_set_format(const char *f __unused) { if (getenv("CRYPT_DEBUG") != NULL) fprintf(stderr, "crypt_set_format: eek, stub called!\n"); |
