]> Savannah Git Hosting - gnulib.git/commitdiff
argp: port to PGI 16.10
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 14 Feb 2017 16:40:23 +0000 (08:40 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 14 Feb 2017 16:52:00 +0000 (08:52 -0800)
* lib/argp-pin.c (dummy): Declare as needed to make file nonempty.

ChangeLog
lib/argp-pin.c

index 9e4337afd43b5801044043f1bef318eae47813ce..bb5e75cbc38c937ca6a781c56b75354fc2837bf4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-02-14  Paul Eggert  <eggert@cs.ucla.edu>
+
+       argp: port to PGI 16.10
+       * lib/argp-pin.c (dummy): Declare as needed to make file nonempty.
+
 2017-02-13  Darshit Shah  <darnir@gnu.org>
 
        unicase: Update function protoype to match definition.
index 261191fd0a585cd66c08f034c9bc38dc5ee934cb..64d831d5df1716d7cc7be3c1475bc9e991737154 100644 (file)
@@ -24,3 +24,10 @@ char *program_invocation_short_name = 0;
 #ifndef HAVE_PROGRAM_INVOCATION_NAME
 char *program_invocation_name = 0;
 #endif
+
+#if (defined HAVE_PROGRAM_INVOCATION_SHORT_NAME \
+     && defined HAVE_PROGRAM_INVOCATION_NAME)
+/* This declaration is solely to ensure that after preprocessing
+   this file is never empty.  */
+typedef int dummy;
+#endif