Unfortunately, BeOS & Linux stdio.h have different header guards - our

inbetween solution now have both.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3661 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-06-25 00:22:04 +00:00
parent b9bc85776c
commit 64700310b9
1 changed files with 4 additions and 1 deletions

View File

@ -1,8 +1,11 @@
/* stdio.h
*/
#ifndef _STDIO_H_
#if !defined(_STDIO_H_) && !defined(_STDIO_H)
// this is a workaround until we have a new stdio.h file
// BeOS' stdio.h defines _STDIO_H_ while Linux' defines _STDIO_H
#define _STDIO_H_
#define _STDIO_H
#include <ktypes.h>
#include <stdarg.h>