don't use cdefs.h as it breaks the windows build.

This commit is contained in:
Mathias Agopian 2009-05-21 13:08:39 -07:00
parent a09fbd164d
commit fee77ec093
1 changed files with 6 additions and 4 deletions

View File

@ -17,9 +17,9 @@
#ifndef NATIVE_HANDLE_H_
#define NATIVE_HANDLE_H_
#include <sys/cdefs.h>
__BEGIN_DECLS
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
@ -66,6 +66,8 @@ native_handle_t* native_handle_create(int numFds, int numInts);
int native_handle_delete(native_handle_t* h);
__END_DECLS
#ifdef __cplusplus
}
#endif
#endif /* NATIVE_HANDLE_H_ */