2010-02-24 11:39:58 +01:00
|
|
|
#ifndef _INCLUDE_SYS_TYPE_H
|
|
|
|
#define _INCLUDE_SYS_TYPE_H
|
2010-02-22 18:44:08 +01:00
|
|
|
|
2009-11-06 09:46:22 +01:00
|
|
|
/*
|
|
|
|
* this files resolves conflicts between the file of the host system and
|
|
|
|
* the minix specific one. This file is included directly only on Minix
|
|
|
|
* and it is an error to do so on any other system
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-06 09:46:22 +01:00
|
|
|
#if !defined(_MINIX) && !defined(__minix) && !defined(__ACK__)
|
|
|
|
#error "Including Minix specific file in program targeted for other system"
|
|
|
|
#else
|
|
|
|
#include <minix/types.h>
|
2006-01-27 14:57:18 +01:00
|
|
|
#endif
|
2010-02-22 18:44:08 +01:00
|
|
|
|
|
|
|
#endif
|