print error message if not compiled in
authorRick Adams <rick@ucbvax.Berkeley.EDU>
Thu, 25 Feb 1988 13:14:02 +0000 (05:14 -0800)
committerRick Adams <rick@ucbvax.Berkeley.EDU>
Thu, 25 Feb 1988 13:14:02 +0000 (05:14 -0800)
SCCS-vsn: usr.bin/uucp/acucntrl/acucntrl.c 5.11

usr/src/usr.bin/uucp/acucntrl/acucntrl.c

index 552d71e..4735e2c 100644 (file)
@@ -1,5 +1,5 @@
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)acucntrl.c 5.10 (Berkeley) %G%";
+static char sccsid[] = "@(#)acucntrl.c 5.11 (Berkeley) %G%";
 #endif
 
 /*  acucntrl - turn around tty line between dialin and dialout
 #endif
 
 /*  acucntrl - turn around tty line between dialin and dialout
@@ -769,4 +769,9 @@ prefix(s1, s2)
                        return (1);
        return (c == '\0');
 }
                        return (1);
        return (c == '\0');
 }
-#endif /* DIALINOUT */
+#else  /* !DIALINOUT */
+main()
+{
+       fprintf(stderr,"acucntrl is not supported on this system\n");
+}
+#endif /* !DIALINOUT */