diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-04-16 02:56:46 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-04-16 02:56:46 +0000 |
commit | 029bcc09d2da80641ce5dedfd03798f228c77ad0 (patch) | |
tree | a9ee898f20b8dd42fa0501e1949b517b75c8e2fa /libiberty/config.in | |
parent | 6a1b7acd5550bde90919afeb07e15889601886f7 (diff) | |
download | gcc-029bcc09d2da80641ce5dedfd03798f228c77ad0.zip gcc-029bcc09d2da80641ce5dedfd03798f228c77ad0.tar.gz gcc-029bcc09d2da80641ce5dedfd03798f228c77ad0.tar.bz2 |
mempcpy.c, [...]: New files.
* mempcpy.c, stpcpy.c, stpncpy.c: New files.
* configure.in (funcs, AC_CHECK_FUNCS): Add mempcpy, stpcpy
and stpncpy.
* Makefile.in (CFILES): Add mempcpy.c, stpcpy.c and stpncpy.c.
(CONFIGURED_OFILES): Add mempcpy.o, stpcpy.o and stpncpy.o.
Regenerate dependencies.
* functions.texi, configure, config.in: Regenerated.
From-SVN: r65674
Diffstat (limited to 'libiberty/config.in')
-rw-r--r-- | libiberty/config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libiberty/config.in b/libiberty/config.in index f0e1746..0efae6d 100644 --- a/libiberty/config.in +++ b/libiberty/config.in @@ -105,6 +105,9 @@ /* Define if you have the memmove function. */ #undef HAVE_MEMMOVE +/* Define if you have the mempcpy function. */ +#undef HAVE_MEMPCPY + /* Define if you have the memset function. */ #undef HAVE_MEMSET @@ -147,6 +150,12 @@ /* Define if you have the sigsetmask function. */ #undef HAVE_SIGSETMASK +/* Define if you have the stpcpy function. */ +#undef HAVE_STPCPY + +/* Define if you have the stpncpy function. */ +#undef HAVE_STPNCPY + /* Define if you have the strcasecmp function. */ #undef HAVE_STRCASECMP |