diff options
author | jkh <jkh@FreeBSD.org> | 1998-10-08 23:14:02 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-10-08 23:14:02 +0000 |
commit | 28dc6bbbeabe612d5645207177e974a2ffe80268 (patch) | |
tree | 14cd56dfd5e3107c62893e6f1fcd9c53fafa815b /libexec | |
parent | acfb98ece652bb7de614edddadd567faf136b4f5 (diff) | |
download | FreeBSD-src-28dc6bbbeabe612d5645207177e974a2ffe80268.zip FreeBSD-src-28dc6bbbeabe612d5645207177e974a2ffe80268.tar.gz |
This thing has its own puts function, so use it.
Submitted by: Matthew Jacob <mjacob@nas.nasa.gov>
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/getty/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libexec/getty/main.c b/libexec/getty/main.c index d5ed46a..6d8f748 100644 --- a/libexec/getty/main.c +++ b/libexec/getty/main.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)from: main.c 8.1 (Berkeley) 6/20/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: main.c,v 1.22 1997/11/21 07:43:50 charnier Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -129,6 +129,8 @@ char partab[] = { #define KILL tmode.c_cc[VKILL] #define EOT tmode.c_cc[VEOF] +#define puts Gputs + static void dingdong __P((int)); static int getname __P((void)); static void interrupt __P((int)); |