2010-11-04 00:46:47 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2003-2010 Haiku Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2004-05-03 13:29:27 +04:00
|
|
|
#ifndef _STDIO_PRE_H_
|
|
|
|
#define _STDIO_PRE_H_
|
2003-02-11 22:37:58 +03:00
|
|
|
|
2010-11-04 00:46:47 +03:00
|
|
|
|
2003-02-11 22:37:58 +03:00
|
|
|
#ifndef _STDIO_H_
|
|
|
|
# error "This file must be included from stdio.h!"
|
|
|
|
#endif
|
|
|
|
|
2004-05-03 13:29:27 +04:00
|
|
|
#include <libio.h>
|
2003-02-11 22:37:58 +03:00
|
|
|
|
2004-05-03 13:29:27 +04:00
|
|
|
typedef struct _IO_FILE FILE;
|
2003-02-11 22:37:58 +03:00
|
|
|
|
2007-03-14 23:36:42 +03:00
|
|
|
#define __PRINTFLIKE(format, varargs) __attribute__ ((__format__ (__printf__, format, varargs)))
|
2003-02-11 22:37:58 +03:00
|
|
|
#define __SCANFLIKE(format, varargs) __attribute__((__format__ (__scanf__, format, varargs)))
|
|
|
|
|
|
|
|
#endif /* _STDIO_PRE_H_ */
|