"namespace.h" should precede all included headers other than <sys/cdefs.h>.

This commit is contained in:
junyoung 2002-11-19 12:58:15 +00:00
parent f2edc229d3
commit 30893a62d9
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: strcasecmp.c,v 1.13 2002/11/19 06:53:17 junyoung Exp $ */
/* $NetBSD: strcasecmp.c,v 1.14 2002/11/19 12:58:15 junyoung Exp $ */
/*
* Copyright (c) 1987, 1993
@ -38,13 +38,12 @@
#if 0
static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: strcasecmp.c,v 1.13 2002/11/19 06:53:17 junyoung Exp $");
__RCSID("$NetBSD: strcasecmp.c,v 1.14 2002/11/19 12:58:15 junyoung Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include "namespace.h"
#include <sys/types.h>
#include <assert.h>
#include <ctype.h>
#include <string.h>