From 51bcc40b35a37fe720e7c8e821d8e3ef8c477dac Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 18 Feb 1995 21:32:19 +0000 Subject: [PATCH] Write setconf() in KNF, in K&R C, and in Standard C.Standard C. --- usr.sbin/config/mkswapconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/config/mkswapconf.c b/usr.sbin/config/mkswapconf.c index 4b883a4dc437..cbb97c75e529 100644 --- a/usr.sbin/config/mkswapconf.c +++ b/usr.sbin/config/mkswapconf.c @@ -113,7 +113,7 @@ do_swap(fl) fprintf(fp, "\t{ NODEV, 0, 0 }\n"); fprintf(fp, "};\n\n"); fprintf(fp, "/* Stub for when generic swap config is not used. */\n"); - fprintf(fp, "void setconf(void) {};\n"); + fprintf(fp, "void\nsetconf()\n{\n}\n"); fclose(fp); return (swap); }