1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-30 11:09:23 +00:00

Regenerate.

This commit is contained in:
Chong Yidong 2008-08-06 05:27:14 +00:00
parent 7ef651dd21
commit 177cd151a2

16
configure vendored
View File

@ -14894,12 +14894,14 @@ cat >>confdefs.h <<\_ACEOF
_ACEOF
fi
if test "${NS_HAVE_INTEGER}" = "yes"; then
cat >>confdefs.h <<\_ACEOF
#define NS_HAVE_INTEGER 1
_ACEOF
# We also have mouse menus.
fi
# We also have mouse menus.
HAVE_MENUS=yes
fi
@ -18729,13 +18731,11 @@ _ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
#include <sys/types.h> /* for off_t */
#include <stdio.h>
#include <stdio.h>
int
main ()
{
int (*fp) (FILE *, off_t, int) = fseeko;
return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
;
return 0;
}
@ -18775,13 +18775,11 @@ cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
#define _LARGEFILE_SOURCE 1
#include <sys/types.h> /* for off_t */
#include <stdio.h>
#include <stdio.h>
int
main ()
{
int (*fp) (FILE *, off_t, int) = fseeko;
return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
;
return 0;
}