Problem: make depend does not add osdef.h for the dependencies
(Drew Vogel)
Solution: Move ifdef PROTO (Hirohito Higashi).
fixes: #18777
closes: #18796
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1925,
/**/
1924,
/**/
// cause compilation failures even though the headers are correct. For
// a concrete example, gcc-3.2 enforces exception specifications, and
// glibc-2.2.5 has them in their system headers.
-#ifndef PROTO
-# if !defined(__cplusplus) && defined(UNIX) \
- && !defined(MACOS_X) // MACOS_X doesn't yet support osdef.h
-# include "auto/osdef.h" // bring missing declarations in
-# endif
+#if !defined(__cplusplus) && defined(UNIX) \
+ && !defined(MACOS_X) // MACOS_X doesn't yet support osdef.h
+# include "auto/osdef.h" // bring missing declarations in
+#endif
+#ifndef PROTO
# ifdef AMIGA
# include "os_amiga.h"
# endif