diff options
author | 1996-06-17 07:46:01 +0000 | |
---|---|---|
committer | 1996-06-17 07:46:01 +0000 | |
commit | ad69070a1c36cc66a22afcd5d5f5043db29abcaf (patch) | |
tree | 0099173d1ac995d22bb728542655e2501d1a9c1c /lib/libutil/passwd.c | |
parent | I'm moving util.h to it's proper place, damnit. (diff) | |
download | wireguard-openbsd-ad69070a1c36cc66a22afcd5d5f5043db29abcaf.tar.xz wireguard-openbsd-ad69070a1c36cc66a22afcd5d5f5043db29abcaf.zip |
util.h: new resting place
opendev.h: ok, so I merged it with util.h
opendev.h: use util.h
everything else: use "util.h"
Diffstat (limited to 'lib/libutil/passwd.c')
-rw-r--r-- | lib/libutil/passwd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libutil/passwd.c b/lib/libutil/passwd.c index 0d03133d3e3..8c7eeb5faac 100644 --- a/lib/libutil/passwd.c +++ b/lib/libutil/passwd.c @@ -1,3 +1,4 @@ +/* $OpenBSD: passwd.c,v 1.3 1996/06/17 07:46:04 downsj Exp $ */ /* * Copyright (c) 1987, 1993, 1994, 1995 * The Regents of the University of California. All rights reserved. @@ -51,7 +52,8 @@ static char rcsid[] = "$NetBSD: passwd.c,v 1.1 1996/05/15 21:42:31 jtc Exp $"; #include <paths.h> #include <signal.h> #include <limits.h> -#include <util.h> + +#include "util.h" static void pw_cont __P((int sig)); |