diff options
author | bde <bde@FreeBSD.org> | 1998-12-16 17:52:15 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-12-16 17:52:15 +0000 |
commit | bae37e638ab1e55f2378c607581f9f7658f23547 (patch) | |
tree | abff988d65c9180871507c8747f98d4e434d0fcc /lib | |
parent | c3648dbd002cd14130169c03ed921789e290a103 (diff) | |
download | FreeBSD-src-bae37e638ab1e55f2378c607581f9f7658f23547.zip FreeBSD-src-bae37e638ab1e55f2378c607581f9f7658f23547.tar.gz |
Declare setproctitle() as printf0-like.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libutil/libutil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h index 2aa2ad0..dda01c1 100644 --- a/lib/libutil/libutil.h +++ b/lib/libutil/libutil.h @@ -18,7 +18,7 @@ * 5. Modifications may be freely made to this file providing the above * conditions are met. * - * $Id: libutil.h,v 1.19 1998/10/09 07:28:14 jkh Exp $ + * $Id: libutil.h,v 1.20 1998/10/09 07:32:38 jkh Exp $ */ #ifndef _LIBUTIL_H_ @@ -39,7 +39,7 @@ struct winsize; struct utmp; __BEGIN_DECLS -void setproctitle __P((const char *_fmt, ...)); +void setproctitle __P((const char *_fmt, ...)) __printf0like(1, 2); void login __P((struct utmp *_ut)); int login_tty __P((int _fd)); int logout __P((char *_line)); |