From: David 'Digit' Turner Date: Mon, 27 Sep 2010 15:27:14 +0000 (+0200) Subject: libc: Add missing C++ guards to X-Git-Tag: android-x86-4.4-r1~1143^2~8^2~10^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f33a7700a5a893798e92ee67495281d2e24159fa;p=android-x86%2Fbionic.git libc: Add missing C++ guards to Change-Id: I94dad48678181d8b02431b1c1f5d507beafb5406 --- diff --git a/libc/include/pathconf.h b/libc/include/pathconf.h index 4677f7b07..94f978789 100644 --- a/libc/include/pathconf.h +++ b/libc/include/pathconf.h @@ -28,6 +28,10 @@ #ifndef _PATHCONF_H_ #define _PATHCONF_H_ +#include + +__BEGIN_DECLS + /* constants to be used for the 'name' paremeter of pathconf/fpathconf */ #define _PC_FILESIZEBITS 0x0000 @@ -54,5 +58,7 @@ extern long fpathconf(int fildes, int name); extern long pathconf(const char *path, int name); +__END_DECLS + #endif /* _PATHCONF_H_ */