diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-18 01:22:02 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-18 01:22:02 +0000 |
commit | 0ec80c0cddf07df31d48095c11d3e6ce94d362d1 (patch) | |
tree | 53da2a6937ceae4d7350d6a3e8340d6159e28bbd /libgo/config.h.in | |
parent | 720dbdb5cfbd7c4a0508b8bac4b5c548c4bb0b2b (diff) | |
download | gcc-0ec80c0cddf07df31d48095c11d3e6ce94d362d1.tar.gz |
libgo: Add mount flags, fallocate, statfs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184365 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/config.h.in')
-rw-r--r-- | libgo/config.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libgo/config.h.in b/libgo/config.h.in index 5318cf58c44..d2aa2f67a1c 100644 --- a/libgo/config.h.in +++ b/libgo/config.h.in @@ -12,6 +12,9 @@ /* Define to 1 if you have the `faccessat' function. */ #undef HAVE_FACCESSAT +/* Define to 1 if you have the `fallocate' function. */ +#undef HAVE_FALLOCATE + /* Define to 1 if you have the `fchmodat' function. */ #undef HAVE_FCHMODAT @@ -130,6 +133,9 @@ /* Define to 1 if you have the <sys/mman.h> header file. */ #undef HAVE_SYS_MMAN_H +/* Define to 1 if you have the <sys/mount.h> header file. */ +#undef HAVE_SYS_MOUNT_H + /* Define to 1 if you have the <sys/prctl.h> header file. */ #undef HAVE_SYS_PRCTL_H @@ -142,6 +148,9 @@ /* Define to 1 if you have the <sys/socket.h> header file. */ #undef HAVE_SYS_SOCKET_H +/* Define to 1 if you have the <sys/statfs.h> header file. */ +#undef HAVE_SYS_STATFS_H + /* Define to 1 if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H @@ -157,6 +166,9 @@ /* Define to 1 if you have the <sys/utsname.h> header file. */ #undef HAVE_SYS_UTSNAME_H +/* Define to 1 if you have the <sys/vfs.h> header file. */ +#undef HAVE_SYS_VFS_H + /* Define to 1 if you have the `tee' function. */ #undef HAVE_TEE @@ -235,3 +247,6 @@ # undef WORDS_BIGENDIAN # endif #endif + +/* Define to `long int' if <sys/types.h> does not define. */ +#undef off_t |