blob: 5cb2693ba81ba34e26cd5967ded28df1d9c1340c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
$NetBSD: patch-ao,v 1.1 2003/09/30 09:44:00 cube Exp $
--- getopt/getopt.c.orig 2003-09-29 23:27:50.000000000 +0200
+++ getopt/getopt.c
@@ -21,17 +21,17 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#ifndef HAVE_GETOPT_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifndef HAVE_GETOPT_LONG_ONLY
/* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
Ditto for AIX 3.2 and <stdlib.h>. */
#ifndef _NO_PROTO
#define _NO_PROTO
#endif
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#if !defined (__STDC__) || !__STDC__
/* This is a separate conditional since some stdc systems
reject `defined (const)'. */
|