Commit 5b6b4000 by Bruce Korb Committed by Bruce Korb

modified test results

From-SVN: r34300
parent 6bb88b67
...@@ -6,6 +6,11 @@ ...@@ -6,6 +6,11 @@
* inclhack.def: add new tests * inclhack.def: add new tests
* tests/base/arch/i960/archI960.h: New test result * tests/base/arch/i960/archI960.h: New test result
* tests/base/curses.h: modified test result * tests/base/curses.h: modified test result
* tests/base/stdio.h: ditto
* tests/base/time.h: ditto
* tests/base/sys/asm.h: ditto
* tests/base/sys/stat.h: ditto
* tests/base/sys/wait.h: ditto
Wed May 31 13:17:20 2000 Philippe De Muyter <phdm@macqel.be> Wed May 31 13:17:20 2000 Philippe De Muyter <phdm@macqel.be>
......
...@@ -123,7 +123,7 @@ do ...@@ -123,7 +123,7 @@ do
: :
else else
diff -c $f ${TESTBASE}/$f >&2 diff -c $f ${TESTBASE}/$f >&2 || :
exitok=false exitok=false
fi fi
done done
......
...@@ -32,4 +32,23 @@ extern int rename(const char *_old, const char *_new); ...@@ -32,4 +32,23 @@ extern int rename(const char *_old, const char *_new);
#endif /* STDIO_STDARG_H_CHECK */ #endif /* STDIO_STDARG_H_CHECK */
#if defined( ULTRIX_CONST_CHECK )
extern void perror( const char *__s );
extern int fputs( const char *__s, FILE *);
extern size_t fwrite( const void *__ptr, size_t, size_t, FILE *);
extern int fscanf( FILE *__stream, const char *__format, ...);
extern int scanf( const char *__format, ...);
#endif /* ULTRIX_CONST_CHECK */
#if defined( ULTRIX_CONST2_CHECK )
extern FILE *fopen( const char *__filename, const char *__type );
extern int sscanf( const char *__s, const char *__format, ...);
extern FILE *popen( const char *, const char *);
extern char *tempnam( const char *, const char *);
#endif /* ULTRIX_CONST2_CHECK */
#endif /* FIXINC_STDIO_STDARG_H_CHECK */ #endif /* FIXINC_STDIO_STDARG_H_CHECK */
#if defined( IRIX_ASM_APOSTROPHE_CHECK ) #if defined( IRIX_ASM_APOSTROPHE_CHECK )
# and we are on vacation # and we are on vacation
#endif /* IRIX_ASM_APOSTROPHE_CHECK */ #endif /* IRIX_ASM_APOSTROPHE_CHECK */
...@@ -16,7 +16,7 @@ extern int fchmod(int, mode_t); ...@@ -16,7 +16,7 @@ extern int fchmod(int, mode_t);
extern "C" { extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
static int stat(const char *__f, struct stat *__p) { static int stat(const char *__f, struct stat *__p) {
return __stat32(__f, __p); return __stat32(__f, __p);
} }
#if __cplusplus #if __cplusplus
} }
...@@ -27,13 +27,20 @@ return __stat32(__f, __p); ...@@ -27,13 +27,20 @@ return __stat32(__f, __p);
extern "C" { extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
static int stat(__f, __p) static int stat(__f, __p)
char *__f; char *__f;
struct stat *__p; struct stat *__p;
{ {
return __stat32(__f, __p); return __stat32(__f, __p);
} }
#if __cplusplus #if __cplusplus
} }
#endif /* __cplusplus */ #endif /* __cplusplus */
#endif #endif
#endif /* SCO_STATIC_FUNC_CHECK */ #endif /* SCO_STATIC_FUNC_CHECK */
#if defined( VXWORKS_NEEDS_VXWORKS_CHECK )
#include </dev/null> /* ULONG */
# define __INCstath <sys/stat.h>
#include <types/vxTypesOld.h>
#endif /* VXWORKS_NEEDS_VXWORKS_CHECK */
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
/* bos325, */ /* bos325, */
struct rusage; struct rusage;
extern pid_t wait3(); extern pid_t wait3();
/* pid_t wait3(int *, int, struct rusage *); */ /* pid_t wait3(int *, int, struct rusage *); */
#endif /* AIX_SYSWAIT_CHECK */ #endif /* AIX_SYSWAIT_CHECK */
......
...@@ -12,4 +12,17 @@ ...@@ -12,4 +12,17 @@
unsigned int _clocks_per_sec; unsigned int _clocks_per_sec;
#endif /* VXWORKS_NEEDS_VXTYPES_CHECK */ #endif /* VXWORKS_NEEDS_VXTYPES_CHECK */
#if defined( VXWORKS_TIME_CHECK )
#ifndef __gcc_VOIDFUNCPTR_defined
#ifdef __cplusplus
typedef void (*__gcc_VOIDFUNCPTR) (...);
#else
typedef void (*__gcc_VOIDFUNCPTR) ();
#endif
#define __gcc_VOIDFUNCPTR_defined
#endif
#define VOIDFUNCPTR __gcc_VOIDFUNCPTR
#endif /* VXWORKS_TIME_CHECK */
#endif /* FIXINC_M88K_MULTI_INCL_CHECK */ #endif /* FIXINC_M88K_MULTI_INCL_CHECK */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment