<ansi.h> -> <minix/ansi.h>

This commit is contained in:
Ben Gras
2011-01-28 11:35:02 +00:00
parent e912f6ac38
commit dc1cc91df1
69 changed files with 99 additions and 97 deletions

View File

@@ -12,8 +12,8 @@
/* Function Prototypes. */
#ifndef _ANSI_H
#include <ansi.h>
#ifndef _MINIX_ANSI_H
#include <minix/ansi.h>
#endif
_PROTOTYPE( int mount, (char *_spec, char *_name, int _mountflags,

View File

@@ -49,8 +49,8 @@ struct ptrace_range {
};
/* Function Prototypes. */
#ifndef _ANSI_H
#include <ansi.h>
#ifndef _MINIX_ANSI_H
#include <minix/ansi.h>
#endif
_PROTOTYPE( long ptrace, (int _req, pid_t _pid, long _addr, long _data) );

View File

@@ -6,8 +6,8 @@
* by the signal catching mechanism.
*/
#ifndef _ANSI_H
#include <ansi.h>
#ifndef _MINIX_ANSI_H
#include <minix/ansi.h>
#endif
#ifndef _MINIX_SYS_CONFIG_H

View File

@@ -5,7 +5,7 @@ sys/time.h
#ifndef _SYS__TIME_H
#define _SYS__TIME_H
#include <ansi.h>
#include <minix/ansi.h>
/* Open Group Base Specifications Issue 6 (not complete) */
struct timeval

View File

@@ -16,8 +16,8 @@ struct tms {
};
/* Function Prototypes. */
#ifndef _ANSI_H
#include <ansi.h>
#ifndef _MINIX_ANSI_H
#include <minix/ansi.h>
#endif
_PROTOTYPE( clock_t times, (struct tms *_buffer) );

View File

@@ -3,10 +3,12 @@
#ifndef _UTSNAME_H
#define _UTSNAME_H
#ifndef _ANSI_H
#include <ansi.h>
#ifndef _MINIX_ANSI_H
#include <minix/ansi.h>
#endif
#include <minix/types.h>
struct utsname {
char sysname[15+1];
char nodename[255+1];