diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-07-14 09:07:21 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-07-14 09:07:21 +0200 |
commit | 8e2eb308d09f6bbf5c66c029090c527bc9346db8 (patch) | |
tree | 9ac9b34294eff11ba7ef2a99a1ad80bdc8a3305a /misc.h | |
parent | - jmc@cvs.openbsd.org 2005/07/08 12:53:10 (diff) | |
download | openssh-8e2eb308d09f6bbf5c66c029090c527bc9346db8.tar.xz openssh-8e2eb308d09f6bbf5c66c029090c527bc9346db8.zip |
- dtucker@cvs.openbsd.org 2005/07/14 04:00:43
[misc.h]
use __sentinel__ attribute; ok deraadt@ djm@ markus@
Diffstat (limited to '')
-rw-r--r-- | misc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.24 2005/07/04 00:58:43 djm Exp $ */ +/* $OpenBSD: misc.h,v 1.25 2005/07/14 04:00:43 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -25,7 +25,7 @@ char *cleanhostname(char *); char *colon(char *); long convtime(const char *); char *tilde_expand_filename(const char *, uid_t); -char *percent_expand(const char *, ...) __attribute__((sentinel)); +char *percent_expand(const char *, ...) __attribute__((__sentinel__)); char *tohex(const u_char *, u_int); struct passwd *pwcopy(struct passwd *); |