diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-08-16 18:34:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-08-16 18:34:41 +0000 |
commit | 90649af9089dd1dc7763d8bf8f16837915184967 (patch) | |
tree | d3b1b87a355477e70ade2ae41c64f93083733131 /lib/libutil/fparseln.c | |
parent | 1dd31862c4767860d39180b4b4f8a33012ab22ad (diff) |
consistently use #include "util.h" not <util.h> since util.h lives in this dir.
Diffstat (limited to 'lib/libutil/fparseln.c')
-rw-r--r-- | lib/libutil/fparseln.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libutil/fparseln.c b/lib/libutil/fparseln.c index e09ce8fb9a6..2c236160ca6 100644 --- a/lib/libutil/fparseln.c +++ b/lib/libutil/fparseln.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fparseln.c,v 1.1 1999/07/20 16:38:56 jakob Exp $ +/* $OpenBSD: fparseln.c,v 1.2 2001/08/16 18:34:40 millert Exp $ /* $NetBSD: fparseln.c,v 1.7 1999/07/02 15:49:12 simonb Exp $ */ /* @@ -31,7 +31,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fparseln.c,v 1.1 1999/07/20 16:38:56 jakob Exp $"; +static char rcsid[] = "$OpenBSD: fparseln.c,v 1.2 2001/08/16 18:34:40 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> @@ -39,7 +39,8 @@ static char rcsid[] = "$OpenBSD: fparseln.c,v 1.1 1999/07/20 16:38:56 jakob Exp #include <stdio.h> #include <string.h> #include <stdlib.h> -#include <util.h> + +#include "util.h" static int isescaped __P((const char *, const char *, int)); |