]> git.cameronkatri.com Git - bsd-progress.git/commitdiff
Overhaul how `build.sh tools' are used:
authorlukem <lukem@NetBSD.org>
Mon, 27 Oct 2003 00:12:41 +0000 (00:12 +0000)
committerlukem <lukem@NetBSD.org>
Mon, 27 Oct 2003 00:12:41 +0000 (00:12 +0000)
    * Rename "config.h" to "nbtool_config.h" and
HAVE_CONFIG_H to HAVE_NBTOOL_CONFIG_H.
This makes in more obvious in the source when we're using
tools/compat/config.h versus "standard autoconf" config.h

    * Consistently move the inclusion of nbtool_config.h to before
     <sys/cdefs.h> so that the former can provide __RCSID() (et al),
     and there's no need to protect those macros any more.

These changes should make it easier to "tool-ify" a program by adding:
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
to the top of the source files (for the general case).

strsuftoll.c

index ef2c4667b2df02aae02d295999020cb7c1ef3ed3..867223e1f3df83ebcc67dc3d93eaaa7198089c44 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: strsuftoll.c,v 1.3 2003/08/07 16:43:44 agc Exp $       */
+/*     $NetBSD: strsuftoll.c,v 1.4 2003/10/27 00:12:42 lukem Exp $     */
 /*-
  * Copyright (c) 2001-2002 The NetBSD Foundation, Inc.
  * All rights reserved.
  * SUCH DAMAGE.
  */
 
+#if HAVE_NBTOOL_CONFIG_H
+#include "nbtool_config.h"
+#endif
+
 #include <sys/cdefs.h>
 
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: strsuftoll.c,v 1.3 2003/08/07 16:43:44 agc Exp $");
+__RCSID("$NetBSD: strsuftoll.c,v 1.4 2003/10/27 00:12:42 lukem Exp $");
 #endif /* LIBC_SCCS and not lint */
 
 #ifdef _LIBC
 #include "namespace.h"
 #endif
 
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
 #if !HAVE_STRSUFTOLL
 
 #include <sys/types.h>