diff options
| author | Paul Eggert | 2011-02-03 11:29:35 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-03 11:29:35 -0800 |
| commit | 67342916c9fd6fffe142539a3aba4601d005e839 (patch) | |
| tree | a12c72452490d3f1763f4033bccdff3aa857f7e0 /lib | |
| parent | 90b750f4e227844e0eb2368193f13631876d0664 (diff) | |
| download | emacs-67342916c9fd6fffe142539a3aba4601d005e839.tar.gz emacs-67342916c9fd6fffe142539a3aba4601d005e839.zip | |
allow C code to suppress warnings about ignored return values
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Makefile.in | 4 | ||||
| -rw-r--r-- | lib/gnulib.mk | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 7cd98417463..e50f9b31ef3 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | # the same distribution terms as the rest of that program. | 24 | # the same distribution terms as the rest of that program. |
| 25 | # | 25 | # |
| 26 | # Generated by gnulib-tool. | 26 | # Generated by gnulib-tool. |
| 27 | # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=. --makefile-name=gnulib.mk --no-libtool --macro-prefix=gl --no-vc-files dtoastr getopt-gnu mktime strftime | 27 | # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=. --makefile-name=gnulib.mk --no-libtool --macro-prefix=gl --no-vc-files dtoastr getopt-gnu ignore-value mktime strftime |
| 28 | 28 | ||
| 29 | VPATH = @srcdir@ | 29 | VPATH = @srcdir@ |
| 30 | pkgdatadir = $(datadir)/@PACKAGE@ | 30 | pkgdatadir = $(datadir)/@PACKAGE@ |
| @@ -483,7 +483,7 @@ MOSTLYCLEANFILES = core *.stackdump arg-nonnull.h arg-nonnull.h-t \ | |||
| 483 | unistd.h-t warn-on-use.h warn-on-use.h-t | 483 | unistd.h-t warn-on-use.h warn-on-use.h-t |
| 484 | noinst_LIBRARIES = libgnu.a | 484 | noinst_LIBRARIES = libgnu.a |
| 485 | DEFAULT_INCLUDES = -I. -I../src -I$(top_srcdir)/src | 485 | DEFAULT_INCLUDES = -I. -I../src -I$(top_srcdir)/src |
| 486 | libgnu_a_SOURCES = dtoastr.c gettext.h | 486 | libgnu_a_SOURCES = dtoastr.c gettext.h ignore-value.h |
| 487 | libgnu_a_LIBADD = $(gl_LIBOBJS) | 487 | libgnu_a_LIBADD = $(gl_LIBOBJS) |
| 488 | libgnu_a_DEPENDENCIES = $(gl_LIBOBJS) | 488 | libgnu_a_DEPENDENCIES = $(gl_LIBOBJS) |
| 489 | EXTRA_libgnu_a_SOURCES = ftoastr.c getopt.c getopt1.c mktime.c \ | 489 | EXTRA_libgnu_a_SOURCES = ftoastr.c getopt.c getopt1.c mktime.c \ |
diff --git a/lib/gnulib.mk b/lib/gnulib.mk index ea6759e4532..af628c8d300 100644 --- a/lib/gnulib.mk +++ b/lib/gnulib.mk | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | # the same distribution terms as the rest of that program. | 9 | # the same distribution terms as the rest of that program. |
| 10 | # | 10 | # |
| 11 | # Generated by gnulib-tool. | 11 | # Generated by gnulib-tool. |
| 12 | # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=. --makefile-name=gnulib.mk --no-libtool --macro-prefix=gl --no-vc-files dtoastr getopt-gnu mktime strftime | 12 | # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=. --makefile-name=gnulib.mk --no-libtool --macro-prefix=gl --no-vc-files dtoastr getopt-gnu ignore-value mktime strftime |
| 13 | 13 | ||
| 14 | 14 | ||
| 15 | MOSTLYCLEANFILES += core *.stackdump | 15 | MOSTLYCLEANFILES += core *.stackdump |
| @@ -111,6 +111,12 @@ libgnu_a_SOURCES += gettext.h | |||
| 111 | 111 | ||
| 112 | ## end gnulib module gettext-h | 112 | ## end gnulib module gettext-h |
| 113 | 113 | ||
| 114 | ## begin gnulib module ignore-value | ||
| 115 | |||
| 116 | libgnu_a_SOURCES += ignore-value.h | ||
| 117 | |||
| 118 | ## end gnulib module ignore-value | ||
| 119 | |||
| 114 | ## begin gnulib module intprops | 120 | ## begin gnulib module intprops |
| 115 | 121 | ||
| 116 | 122 | ||