diff options
author | imp <imp@FreeBSD.org> | 2002-03-21 13:20:49 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-03-21 13:20:49 +0000 |
commit | ec2a00af74c8240f7fc6f03c84ad40034fbf2aac (patch) | |
tree | 7889a8c6dd8258adf78b1be9e93d2baefad6abb1 /sbin/swapon | |
parent | baca1664d961625b631ee7b6c1faf55e0f926aa9 (diff) | |
download | FreeBSD-src-ec2a00af74c8240f7fc6f03c84ad40034fbf2aac.zip FreeBSD-src-ec2a00af74c8240f7fc6f03c84ad40034fbf2aac.tar.gz |
o remove __P
o remove main prototype
Diffstat (limited to 'sbin/swapon')
-rw-r--r-- | sbin/swapon/swapon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/swapon/swapon.c b/sbin/swapon/swapon.c index 323049b..69f4e73 100644 --- a/sbin/swapon/swapon.c +++ b/sbin/swapon/swapon.c @@ -53,8 +53,8 @@ static const char rcsid[] = #include <string.h> #include <unistd.h> -static void usage __P((void)); -int add __P((char *name, int ignoreebusy)); +static void usage(void); +int add(char *name, int ignoreebusy); int main(int argc, char **argv) |