diff options
| author | Chong Yidong | 2008-07-25 17:51:06 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-07-25 17:51:06 +0000 |
| commit | 50e682b90812e7c8f740b742bffc51a14769ae85 (patch) | |
| tree | 0a53faf61c964a4068772433919322721593be75 | |
| parent | 86e922b7f0a026f5498bef2657d60fd4e8c8f94e (diff) | |
| download | emacs-50e682b90812e7c8f740b742bffc51a14769ae85.tar.gz emacs-50e682b90812e7c8f740b742bffc51a14769ae85.zip | |
Regenerate.
| -rwxr-xr-x | configure | 12 |
1 files changed, 8 insertions, 4 deletions
| @@ -18086,11 +18086,13 @@ _ACEOF | |||
| 18086 | cat confdefs.h >>conftest.$ac_ext | 18086 | cat confdefs.h >>conftest.$ac_ext |
| 18087 | cat >>conftest.$ac_ext <<_ACEOF | 18087 | cat >>conftest.$ac_ext <<_ACEOF |
| 18088 | /* end confdefs.h. */ | 18088 | /* end confdefs.h. */ |
| 18089 | #include <stdio.h> | 18089 | #include <sys/types.h> /* for off_t */ |
| 18090 | #include <stdio.h> | ||
| 18090 | int | 18091 | int |
| 18091 | main () | 18092 | main () |
| 18092 | { | 18093 | { |
| 18093 | return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 18094 | int (*fp) (FILE *, off_t, int) = fseeko; |
| 18095 | return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); | ||
| 18094 | ; | 18096 | ; |
| 18095 | return 0; | 18097 | return 0; |
| 18096 | } | 18098 | } |
| @@ -18130,11 +18132,13 @@ cat confdefs.h >>conftest.$ac_ext | |||
| 18130 | cat >>conftest.$ac_ext <<_ACEOF | 18132 | cat >>conftest.$ac_ext <<_ACEOF |
| 18131 | /* end confdefs.h. */ | 18133 | /* end confdefs.h. */ |
| 18132 | #define _LARGEFILE_SOURCE 1 | 18134 | #define _LARGEFILE_SOURCE 1 |
| 18133 | #include <stdio.h> | 18135 | #include <sys/types.h> /* for off_t */ |
| 18136 | #include <stdio.h> | ||
| 18134 | int | 18137 | int |
| 18135 | main () | 18138 | main () |
| 18136 | { | 18139 | { |
| 18137 | return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 18140 | int (*fp) (FILE *, off_t, int) = fseeko; |
| 18141 | return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); | ||
| 18138 | ; | 18142 | ; |
| 18139 | return 0; | 18143 | return 0; |
| 18140 | } | 18144 | } |