diff options
author | Heikki Korpela <heko@cvs.openbsd.org> | 2001-08-12 12:03:04 +0000 |
---|---|---|
committer | Heikki Korpela <heko@cvs.openbsd.org> | 2001-08-12 12:03:04 +0000 |
commit | 8733d65e598e20f5a4415a710e9c51ab3a3d323d (patch) | |
tree | 39173461770e11f8ad331e9aa18365fc4ab2d19f /usr.sbin/config | |
parent | bbbc80b14c0c9c05eb40dfe595d4893002a710bf (diff) |
#(endif|else) foo is incorrect, make it #endif /* foo */
deraadt@ ok
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/cmd.h | 4 | ||||
-rw-r--r-- | usr.sbin/config/exec.h | 4 | ||||
-rw-r--r-- | usr.sbin/config/misc.h | 4 | ||||
-rw-r--r-- | usr.sbin/config/ukc.h | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/usr.sbin/config/cmd.h b/usr.sbin/config/cmd.h index 032dfca605a..2f2d330e774 100644 --- a/usr.sbin/config/cmd.h +++ b/usr.sbin/config/cmd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.h,v 1.2 2000/01/08 23:23:37 d Exp $ */ +/* $OpenBSD: cmd.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -73,6 +73,6 @@ int Xexit __P((cmd_t *)); int Xquit __P((cmd_t *)); int Xtimezone __P((cmd_t *)); -#endif _CMD_H +#endif /* _CMD_H */ diff --git a/usr.sbin/config/exec.h b/usr.sbin/config/exec.h index b57afcf85cf..93420676721 100644 --- a/usr.sbin/config/exec.h +++ b/usr.sbin/config/exec.h @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.h,v 1.1 1999/10/04 20:00:51 deraadt Exp $ */ +/* $OpenBSD: exec.h,v 1.2 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1999 Mats O Jansson. All rights reserved. @@ -37,5 +37,5 @@ void savekernel __P((char *)); caddr_t adjust __P((caddr_t)); caddr_t readjust __P((caddr_t)); -#endif _EXEC_H +#endif /* _EXEC_H */ diff --git a/usr.sbin/config/misc.h b/usr.sbin/config/misc.h index 788b3620148..503d6126f19 100644 --- a/usr.sbin/config/misc.h +++ b/usr.sbin/config/misc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.1 1999/10/04 20:00:51 deraadt Exp $ */ +/* $OpenBSD: misc.h,v 1.2 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -40,5 +40,5 @@ int ask_cmd __P((cmd_t *)); int ask_yn __P((const char *)); -#endif _MISC_H +#endif /* _MISC_H */ diff --git a/usr.sbin/config/ukc.h b/usr.sbin/config/ukc.h index a11280e1836..407fa939e16 100644 --- a/usr.sbin/config/ukc.h +++ b/usr.sbin/config/ukc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ukc.h,v 1.4 2001/02/04 20:42:12 maja Exp $ */ +/* $OpenBSD: ukc.h,v 1.5 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1999-2001 Mats O Jansson. All rights reserved. @@ -152,6 +152,6 @@ void process_history __P((int, char *)); #define UC_FIND 'f' #define UC_SHOW 's' -#endif _UTIL_H +#endif /* _UTIL_H */ |