diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-08-19 17:58:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-08-19 17:58:33 +0000 |
commit | f0ad6f8bbb0c65f76a75f0500a7f504a0632df57 (patch) | |
tree | bebfc83ba206528ed90fe4ca50e96ae0bd8260d9 /usr.sbin | |
parent | 16f197e679e044ef2183dfcd3e0378a6a5fe9a69 (diff) |
add missing prototype
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pwd_mkdb/pwd_mkdb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/pwd_mkdb/pwd_mkdb.c b/usr.sbin/pwd_mkdb/pwd_mkdb.c index 8c06161834f..c6a93093634 100644 --- a/usr.sbin/pwd_mkdb/pwd_mkdb.c +++ b/usr.sbin/pwd_mkdb/pwd_mkdb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pwd_mkdb.c,v 1.48 2015/04/24 21:14:48 millert Exp $ */ +/* $OpenBSD: pwd_mkdb.c,v 1.49 2015/08/19 17:58:32 deraadt Exp $ */ /*- * Copyright (c) 1991, 1993, 1994 @@ -84,6 +84,8 @@ __dead void fatalc(int, const char *, ...) __attribute__((__format__ (printf, 2, 3))); __dead void fatalx(const char *, ...) __attribute__((__format__ (printf, 1, 2))); +int write_old_entry(FILE *, const struct passwd *); + void cp(char *, char *, mode_t); void mv(char *, char *); int scan(FILE *, struct passwd *, int *); |