]> git.eshelyaron.com Git - emacs.git/commitdiff
(tparam): Declare an arg. Use P_ to declare tparm.
authorDave Love <fx@gnu.org>
Tue, 30 Jul 2002 11:37:36 +0000 (11:37 +0000)
committerDave Love <fx@gnu.org>
Tue, 30 Jul 2002 11:37:36 +0000 (11:37 +0000)
src/terminfo.c

index 17ce16dabd6558e8addab1913ed05184cd2d2512..1643b641f6d065b91129e75edcf91953e3beef95 100644 (file)
@@ -38,10 +38,10 @@ char *
 tparam (string, outstring, len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)
      char *string;
      char *outstring;
-     int arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9;
+     int len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9;
 {
   char *temp;
-  extern char *tparm();
+  extern char *tparm P_((const char *, ...));
 
   temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
   if (outstring == 0)