From e2e6fd2d71239fdae785cec4518bdb8d873f153a Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 15 Mar 2015 21:12:06 -0400 Subject: libiberty: add empty translation units to satisfy build system requirements. signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information. --- libiberty/asprintf.c | 2 ++ libiberty/atexit.c | 2 ++ libiberty/basename.c | 2 ++ libiberty/bcmp.c | 2 ++ libiberty/bcopy.c | 2 ++ libiberty/bsearch.c | 2 ++ libiberty/bzero.c | 2 ++ libiberty/calloc.c | 2 ++ libiberty/clock.c | 2 ++ libiberty/copysign.c | 2 ++ libiberty/ffs.c | 2 ++ libiberty/fnmatch.c | 2 ++ libiberty/getcwd.c | 2 ++ libiberty/getopt.c | 2 ++ libiberty/getopt1.c | 2 ++ libiberty/getpagesize.c | 2 ++ libiberty/gettimeofday.c | 2 ++ libiberty/index.c | 2 ++ libiberty/insque.c | 2 ++ libiberty/memchr.c | 2 ++ libiberty/memcmp.c | 2 ++ libiberty/memcpy.c | 2 ++ libiberty/memmem.c | 2 ++ libiberty/memmove.c | 2 ++ libiberty/mempcpy.c | 2 ++ libiberty/memset.c | 2 ++ libiberty/mkstemps.c | 2 ++ libiberty/putenv.c | 2 ++ libiberty/random.c | 2 ++ libiberty/regex.c | 2 ++ libiberty/rename.c | 2 ++ libiberty/rindex.c | 2 ++ libiberty/setenv.c | 2 ++ libiberty/snprintf.c | 2 ++ libiberty/strcasecmp.c | 2 ++ libiberty/strchr.c | 2 ++ libiberty/strerror.c | 2 ++ libiberty/strncasecmp.c | 2 ++ libiberty/strncmp.c | 2 ++ libiberty/strndup.c | 2 ++ libiberty/strrchr.c | 2 ++ libiberty/strsignal.c | 2 ++ libiberty/strstr.c | 2 ++ libiberty/strtod.c | 2 ++ libiberty/strtol.c | 2 ++ libiberty/strtoul.c | 2 ++ libiberty/strverscmp.c | 2 ++ libiberty/tmpnam.c | 2 ++ libiberty/vasprintf.c | 2 ++ libiberty/vfprintf.c | 2 ++ libiberty/vprintf.c | 2 ++ libiberty/vsnprintf.c | 2 ++ libiberty/vsprintf.c | 2 ++ libiberty/waitpid.c | 2 ++ libiberty/xatexit.c | 2 ++ libiberty/xexit.c | 2 ++ libiberty/xmalloc.c | 2 ++ libiberty/xmemdup.c | 2 ++ libiberty/xstrdup.c | 2 ++ libiberty/xstrerror.c | 2 ++ libiberty/xstrndup.c | 2 ++ 61 files changed, 122 insertions(+) create mode 100644 libiberty/asprintf.c create mode 100644 libiberty/atexit.c create mode 100644 libiberty/basename.c create mode 100644 libiberty/bcmp.c create mode 100644 libiberty/bcopy.c create mode 100644 libiberty/bsearch.c create mode 100644 libiberty/bzero.c create mode 100644 libiberty/calloc.c create mode 100644 libiberty/clock.c create mode 100644 libiberty/copysign.c create mode 100644 libiberty/ffs.c create mode 100644 libiberty/fnmatch.c create mode 100644 libiberty/getcwd.c create mode 100644 libiberty/getopt.c create mode 100644 libiberty/getopt1.c create mode 100644 libiberty/getpagesize.c create mode 100644 libiberty/gettimeofday.c create mode 100644 libiberty/index.c create mode 100644 libiberty/insque.c create mode 100644 libiberty/memchr.c create mode 100644 libiberty/memcmp.c create mode 100644 libiberty/memcpy.c create mode 100644 libiberty/memmem.c create mode 100644 libiberty/memmove.c create mode 100644 libiberty/mempcpy.c create mode 100644 libiberty/memset.c create mode 100644 libiberty/mkstemps.c create mode 100644 libiberty/putenv.c create mode 100644 libiberty/random.c create mode 100644 libiberty/regex.c create mode 100644 libiberty/rename.c create mode 100644 libiberty/rindex.c create mode 100644 libiberty/setenv.c create mode 100644 libiberty/snprintf.c create mode 100644 libiberty/strcasecmp.c create mode 100644 libiberty/strchr.c create mode 100644 libiberty/strerror.c create mode 100644 libiberty/strncasecmp.c create mode 100644 libiberty/strncmp.c create mode 100644 libiberty/strndup.c create mode 100644 libiberty/strrchr.c create mode 100644 libiberty/strsignal.c create mode 100644 libiberty/strstr.c create mode 100644 libiberty/strtod.c create mode 100644 libiberty/strtol.c create mode 100644 libiberty/strtoul.c create mode 100644 libiberty/strverscmp.c create mode 100644 libiberty/tmpnam.c create mode 100644 libiberty/vasprintf.c create mode 100644 libiberty/vfprintf.c create mode 100644 libiberty/vprintf.c create mode 100644 libiberty/vsnprintf.c create mode 100644 libiberty/vsprintf.c create mode 100644 libiberty/waitpid.c create mode 100644 libiberty/xatexit.c create mode 100644 libiberty/xexit.c create mode 100644 libiberty/xmalloc.c create mode 100644 libiberty/xmemdup.c create mode 100644 libiberty/xstrdup.c create mode 100644 libiberty/xstrerror.c create mode 100644 libiberty/xstrndup.c (limited to 'libiberty') diff --git a/libiberty/asprintf.c b/libiberty/asprintf.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/asprintf.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/atexit.c b/libiberty/atexit.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/atexit.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/basename.c b/libiberty/basename.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/basename.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/bcmp.c b/libiberty/bcmp.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/bcmp.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/bcopy.c b/libiberty/bcopy.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/bcopy.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/bsearch.c b/libiberty/bsearch.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/bsearch.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/bzero.c b/libiberty/bzero.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/bzero.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/calloc.c b/libiberty/calloc.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/calloc.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/clock.c b/libiberty/clock.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/clock.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/copysign.c b/libiberty/copysign.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/copysign.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/ffs.c b/libiberty/ffs.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/ffs.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/fnmatch.c b/libiberty/fnmatch.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/fnmatch.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/getcwd.c b/libiberty/getcwd.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/getcwd.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/getopt.c b/libiberty/getopt.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/getopt.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/getopt1.c b/libiberty/getopt1.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/getopt1.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/getpagesize.c b/libiberty/getpagesize.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/getpagesize.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/gettimeofday.c b/libiberty/gettimeofday.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/gettimeofday.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/index.c b/libiberty/index.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/index.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/insque.c b/libiberty/insque.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/insque.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/memchr.c b/libiberty/memchr.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/memchr.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/memcmp.c b/libiberty/memcmp.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/memcmp.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/memcpy.c b/libiberty/memcpy.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/memcpy.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/memmem.c b/libiberty/memmem.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/memmem.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/memmove.c b/libiberty/memmove.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/memmove.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/mempcpy.c b/libiberty/mempcpy.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/mempcpy.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/memset.c b/libiberty/memset.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/memset.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/mkstemps.c b/libiberty/mkstemps.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/mkstemps.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/putenv.c b/libiberty/putenv.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/putenv.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/random.c b/libiberty/random.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/random.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/regex.c b/libiberty/regex.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/regex.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/rename.c b/libiberty/rename.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/rename.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/rindex.c b/libiberty/rindex.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/rindex.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/setenv.c b/libiberty/setenv.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/setenv.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/snprintf.c b/libiberty/snprintf.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/snprintf.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strcasecmp.c b/libiberty/strcasecmp.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strcasecmp.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strchr.c b/libiberty/strchr.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strchr.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strerror.c b/libiberty/strerror.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strerror.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strncasecmp.c b/libiberty/strncasecmp.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strncasecmp.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strncmp.c b/libiberty/strncmp.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strncmp.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strndup.c b/libiberty/strndup.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strndup.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strrchr.c b/libiberty/strrchr.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strrchr.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strsignal.c b/libiberty/strsignal.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strsignal.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strstr.c b/libiberty/strstr.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strstr.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strtod.c b/libiberty/strtod.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strtod.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strtol.c b/libiberty/strtol.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strtol.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strtoul.c b/libiberty/strtoul.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strtoul.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/strverscmp.c b/libiberty/strverscmp.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/strverscmp.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/tmpnam.c b/libiberty/tmpnam.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/tmpnam.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/vasprintf.c b/libiberty/vasprintf.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/vasprintf.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/vfprintf.c b/libiberty/vfprintf.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/vfprintf.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/vprintf.c b/libiberty/vprintf.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/vprintf.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/vsnprintf.c b/libiberty/vsnprintf.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/vsnprintf.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/vsprintf.c b/libiberty/vsprintf.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/vsprintf.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/waitpid.c b/libiberty/waitpid.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/waitpid.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/xatexit.c b/libiberty/xatexit.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/xatexit.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/xexit.c b/libiberty/xexit.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/xexit.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/xmalloc.c b/libiberty/xmalloc.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/xmalloc.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/xmemdup.c b/libiberty/xmemdup.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/xmemdup.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/xstrdup.c b/libiberty/xstrdup.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/xstrdup.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/xstrerror.c b/libiberty/xstrerror.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/xstrerror.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; diff --git a/libiberty/xstrndup.c b/libiberty/xstrndup.c new file mode 100644 index 000000000..59ec5d2bc --- /dev/null +++ b/libiberty/xstrndup.c @@ -0,0 +1,2 @@ +/* empty translation unit for build system compatibility */ +typedef int dummy; -- cgit v1.2.3