summaryrefslogtreecommitdiffstats
path: root/libc/include/sys/system_properties.h
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@google.com>2010-02-09 14:05:43 -0800
committerDavid 'Digit' Turner <digit@google.com>2010-02-09 14:05:43 -0800
commit49f0a8f23bba188466c6ee3652858ef4da228c6f (patch)
treefd0c67133f0ad6e856a7a56a1f27333131ef40e3 /libc/include/sys/system_properties.h
parentcdcc2648baa3ad62c497fbc87c36de590f9f9f97 (diff)
downloadbionic-49f0a8f23bba188466c6ee3652858ef4da228c6f.zip
bionic-49f0a8f23bba188466c6ee3652858ef4da228c6f.tar.gz
bionic-49f0a8f23bba188466c6ee3652858ef4da228c6f.tar.bz2
Fix <sys/epoll.h> and <sys/system_properties.h> to include proper C++ inclusion guards
Diffstat (limited to 'libc/include/sys/system_properties.h')
-rw-r--r--libc/include/sys/system_properties.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/include/sys/system_properties.h b/libc/include/sys/system_properties.h
index 2eb00cd..4fdc944 100644
--- a/libc/include/sys/system_properties.h
+++ b/libc/include/sys/system_properties.h
@@ -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