Fix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusion guards

This commit is contained in:
David 'Digit' Turner
2010-02-09 14:05:43 -08:00
parent cdcc2648ba
commit 49f0a8f23b
2 changed files with 12 additions and 0 deletions

View File

@@ -29,6 +29,10 @@
#ifndef _INCLUDE_SYS_SYSTEM_PROPERTIES_H
#define _INCLUDE_SYS_SYSTEM_PROPERTIES_H
#include <sys/cdefs.h>
__BEGIN_DECLS
typedef struct prop_info prop_info;
#define PROP_NAME_MAX 32
@@ -76,4 +80,6 @@ int __system_property_read(const prop_info *pi, char *name, char *value);
*/
const prop_info *__system_property_find_nth(unsigned n);
__END_DECLS
#endif