BSD 4_3 release
[unix-history] / usr / src / usr.bin / tip / aculib / df.c
index 504e97e..78e570d 100644 (file)
@@ -1,34 +1,35 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)df.c       4.7 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)df.c       5.1 (Berkeley) 6/6/85";
+#endif not lint
 
 /*
  * Dial the DF02-AC or DF03-AC
  */
 
 
 /*
  * Dial the DF02-AC or DF03-AC
  */
 
-#if defined(DF02) || defined(DF03)
 #include "tip.h"
 
 static jmp_buf Sjbuf;
 static timeout();
 
 #include "tip.h"
 
 static jmp_buf Sjbuf;
 static timeout();
 
-#if DF02
 df02_dialer(num, acu)
        char *num, *acu;
 {
 
        return (df_dialer(num, acu, 0));
 }
 df02_dialer(num, acu)
        char *num, *acu;
 {
 
        return (df_dialer(num, acu, 0));
 }
-#endif
 
 
-#if DF03
 df03_dialer(num, acu)
        char *num, *acu;
 {
 
        return (df_dialer(num, acu, 1));
 }
 df03_dialer(num, acu)
        char *num, *acu;
 {
 
        return (df_dialer(num, acu, 1));
 }
-#endif
 
 df_dialer(num, acu, df03)
        char *num, *acu;
 
 df_dialer(num, acu, df03)
        char *num, *acu;
@@ -102,4 +103,3 @@ timeout()
 
        longjmp(Sjbuf, 1);
 }
 
        longjmp(Sjbuf, 1);
 }
-#endif