]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/test_tparm.c
ncurses 6.4 - patch 20230603
[ncurses.git] / test / test_tparm.c
index 40ffc4fb1d07f0916a46110c39cd4efe98d0908a..1c4e0d4c2beae380ef6b97f0753d4f0ed6a220a3 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright 2020 Thomas E. Dickey                                          *
+ * Copyright 2020-2022,2023 Thomas E. Dickey                                *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
 /*
  * Author: Thomas E. Dickey
  *
- * $Id: test_tparm.c,v 1.4 2020/05/31 00:51:32 tom Exp $
+ * $Id: test_tparm.c,v 1.37 2023/04/28 23:12:00 tom Exp $
  *
- * Exercise tparm, either for all possible capabilities with fixed parameters,
- * or one capability with all possible parameters.
- *
- * TODO: incorporate tic.h and _nc_tparm_analyze
- * TODO: optionally test tiparm
- * TODO: add checks/logic to handle "%s" in tparm
+ * Exercise tparm/tiparm, either for all possible capabilities with fixed
+ * parameters, or one capability with specific combinations of parameters.
  */
 #define USE_TINFO
 #include <test.priv.h>
 
-static void failed(const char *) GCC_NORETURN;
+#if NCURSES_XNAMES
+#if HAVE_TERM_ENTRY_H
+#include <term_entry.h>
+#else
+#undef NCURSES_XNAMES
+#define NCURSES_XNAMES 0
+#endif
+#endif
+
+#define MAX_PARM 9
+
+#define GrowArray(array,limit,length) \
+           if (length + 2 >= limit) { \
+               limit *= 2; \
+               array = typeRealloc(char *, limit, array); \
+               if (array == 0) { \
+                   failed("no memory: " #array); \
+               } \
+           }
+
+static GCC_NORETURN void failed(const char *);
 
 static void
 failed(const char *msg)
@@ -53,8 +69,37 @@ failed(const char *msg)
 #if HAVE_TIGETSTR
 
 static int a_opt;
+static int i_opt;
+static int p_opt;
+static int s_opt;
 static int v_opt;
 
+/*
+ * Total tests (and failures):
+ */
+static long total_tests;
+static long total_fails;
+
+/*
+ * Total characters formatted for tputs:
+ */
+static long total_nulls;
+static long total_ctrls;
+static long total_print;
+
+static int
+output_func(int ch)
+{
+    if (ch == 0) {
+       total_nulls++;
+    } else if (ch < 32 || (ch >= 127 && ch < 160)) {
+       total_ctrls++;
+    } else {
+       total_print++;
+    }
+    return ch;
+}
+
 static int
 isNumeric(char *source)
 {
@@ -65,31 +110,40 @@ isNumeric(char *source)
     return result;
 }
 
-static char *
-validate(const char *name)
+static int
+relevant(const char *name, const char *value)
 {
-    char *value = tigetstr(name);
-    if (!VALID_STRING(value)) {
-       if (v_opt > 1) {
+    int code = 1;
+    if (VALID_STRING(value)) {
+       if (strstr(value, "%p") == 0
+           && strstr(value, "%d") == 0
+           && strstr(value, "%s") == 0
+           && (!p_opt || strstr(value, "$<") == 0)) {
+           if (v_opt > 2)
+               printf("? %s noparams\n", name);
+           code = 0;
+       }
+    } else {
+       if (v_opt > 2) {
            printf("? %s %s\n",
                   (value == ABSENT_STRING)
                   ? "absent"
                   : "cancel",
                   name);
        }
-       value = 0;
+       code = 0;
     }
-    return value;
+    return code;
 }
 
 static int
-increment(int *all_parms, int *num_parms, int len_parms, int end_parms)
+increment(long *all_parms, int *num_parms, int len_parms, int end_parms)
 {
     int rc = 0;
     int n;
 
-    if (len_parms > 9)
-       len_parms = 9;
+    if (len_parms > MAX_PARM)
+       len_parms = MAX_PARM;
 
     if (end_parms < len_parms) {
        if (all_parms[end_parms]++ >= num_parms[end_parms]) {
@@ -107,103 +161,298 @@ increment(int *all_parms, int *num_parms, int len_parms, int end_parms)
     return rc;
 }
 
+/* parse the format string to determine which positional parameters
+ * are assumed to be strings.
+ */
+#if HAVE_TISCAN_S
+static int
+analyze_format(const char *format, int *mask, char **p_is_s)
+{
+    int arg_count;
+    int arg_mask;
+    int n;
+    if (tiscan_s(&arg_count, &arg_mask, format) == OK) {
+       *mask = arg_mask;
+       for (n = 0; n < MAX_PARM; ++n) {
+           static char dummy[1];
+           p_is_s[n] = (arg_mask & 1) ? dummy : NULL;
+           arg_mask >>= 1;
+       }
+    } else {
+       *mask = 0;
+       arg_count = 0;
+       for (n = 0; n < MAX_PARM; ++n) {
+           p_is_s[n] = NULL;
+       }
+    }
+    return arg_count;
+}
+#elif HAVE__NC_TPARM_ANALYZE
+extern int _nc_tparm_analyze(TERMINAL *, const char *, char **, int *);
+
+static int
+analyze_format(const char *format, int *mask, char **p_is_s)
+{
+    int popcount = 0;
+    int analyzed = _nc_tparm_analyze(cur_term, format, p_is_s, &popcount);
+    int n;
+    if (analyzed < popcount) {
+       analyzed = popcount;
+    }
+    *mask = 0;
+    for (n = 0; n < MAX_PARM; ++n) {
+       if (p_is_s[n])
+           *mask |= (1 << n);
+    }
+    return analyzed;
+}
+#else
+/* TODO: make this work without direct use of ncurses internals. */
+static int
+analyze_format(const char *format, int *mask, char **p_is_s)
+{
+    int n;
+    char *filler = strstr(format, "%s");
+    *mask = 0;
+    for (n = 0; n < MAX_PARM; ++n) {
+       p_is_s[n] = filler;
+    }
+    return n;
+}
+#endif
+
+#define NumStr(n) use_strings[n] \
+                 ? (long) (my_intptr_t) (number[n] \
+                    ? string[n] \
+                    : NULL) \
+                 : number[n]
+
+#define NS_0(fmt)      fmt
+#define NS_1(fmt)      NS_0(fmt), NumStr(0)
+#define NS_2(fmt)      NS_1(fmt), NumStr(1)
+#define NS_3(fmt)      NS_2(fmt), NumStr(2)
+#define NS_4(fmt)      NS_3(fmt), NumStr(3)
+#define NS_5(fmt)      NS_4(fmt), NumStr(4)
+#define NS_6(fmt)      NS_5(fmt), NumStr(5)
+#define NS_7(fmt)      NS_6(fmt), NumStr(6)
+#define NS_8(fmt)      NS_7(fmt), NumStr(7)
+#define NS_9(fmt)      NS_8(fmt), NumStr(8)
+
 static void
-test_tparm(const char *name, int *number)
+test_tparm(const char *name, const char *format, long *number, char **string)
 {
-    char *format = tigetstr(name);
-    if ((format = validate(name)) != 0) {
-       char *result = tparm(format,
-                            number[0],
-                            number[1],
-                            number[2],
-                            number[3],
-                            number[4],
-                            number[5],
-                            number[6],
-                            number[7],
-                            number[8]);
-       if (v_opt > 1)
-           printf(".. %2d = %2d %2d %2d %2d %2d %2d %2d %2d %2d %s\n",
-                  result != 0 ? (int) strlen(result) : -1,
-                  number[0],
-                  number[1],
-                  number[2],
-                  number[3],
-                  number[4],
-                  number[5],
-                  number[6],
-                  number[7],
-                  number[8],
-                  name);
+    char *use_strings[MAX_PARM];
+    char *result = NULL;
+    int nparam;
+    int mask;
+
+    nparam = analyze_format(format, &mask, use_strings);
+#if HAVE_TIPARM_S
+    if (s_opt) {
+       switch (nparam) {
+       case 0:
+           result = tiparm_s(0, mask, NS_0(format));
+           break;
+       case 1:
+           result = tiparm_s(1, mask, NS_1(format));
+           break;
+       case 2:
+           result = tiparm_s(2, mask, NS_2(format));
+           break;
+       case 3:
+           result = tiparm_s(3, mask, NS_3(format));
+           break;
+       case 4:
+           result = tiparm_s(4, mask, NS_4(format));
+           break;
+       case 5:
+           result = tiparm_s(5, mask, NS_5(format));
+           break;
+       case 6:
+           result = tiparm_s(6, mask, NS_6(format));
+           break;
+       case 7:
+           result = tiparm_s(7, mask, NS_7(format));
+           break;
+       case 8:
+           result = tiparm_s(8, mask, NS_8(format));
+           break;
+       case 9:
+           result = tiparm_s(9, mask, NS_9(format));
+           break;
+       }
+    } else
+#endif
+#if HAVE_TIPARM
+    if (i_opt) {
+       switch (nparam) {
+       case 0:
+           result = tiparm(NS_0(format));
+           break;
+       case 1:
+           result = tiparm(NS_1(format));
+           break;
+       case 2:
+           result = tiparm(NS_2(format));
+           break;
+       case 3:
+           result = tiparm(NS_3(format));
+           break;
+       case 4:
+           result = tiparm(NS_4(format));
+           break;
+       case 5:
+           result = tiparm(NS_5(format));
+           break;
+       case 6:
+           result = tiparm(NS_6(format));
+           break;
+       case 7:
+           result = tiparm(NS_7(format));
+           break;
+       case 8:
+           result = tiparm(NS_8(format));
+           break;
+       case 9:
+           result = tiparm(NS_9(format));
+           break;
+       }
+    } else
+#endif
+       result = tparm(NS_9(format));
+    total_tests++;
+    if (result != NULL) {
+       tputs(result, 1, output_func);
+    } else {
+       total_fails++;
+    }
+    if (v_opt > 1) {
+       int n;
+       printf(".. %3d =", result != 0 ? (int) strlen(result) : -1);
+       for (n = 0; n < nparam; ++n) {
+           if (use_strings[n]) {
+               if (number[n]) {
+                   printf(" \"%s\"", string[n]);
+               } else {
+                   printf("  ?");
+               }
+           } else {
+               printf(" %2ld", number[n]);
+           }
+       }
+       printf(" %s\n", name);
     }
 }
 
 static void
-usage(void)
+usage(int ok)
 {
     static const char *msg[] =
     {
-       "Usage: test_tparm [options] [capability] [value1 [value2 [...]]]",
-       "",
-       "Print all distinct combinations of given capability.",
-       "",
-       "Options:",
-       " -T TERM  override $TERM; this may be a comma-separated list or \"-\"",
-       "          to read a list from standard-input",
-       " -a       if capability is given, test all combinations of values",
-       " -r NUM   repeat tests NUM times",
-       " -v       show values and results",
+       "Usage: test_tparm [options] [capability] [value1 [value2 [...]]]"
+       ,""
+       ,"Use tparm/tputs for all distinct combinations of given capability."
+       ,""
+       ,USAGE_COMMON
+       ,"Options:"
+       ," -T TERM  override $TERM; this may be a comma-separated list or \"-\""
+       ,"          to read a list from standard-input"
+       ," -a       test all combinations of parameters"
+       ,"          [value1...] forms a vector of maximum parameter-values."
+#if HAVE_TIPARM
+       ," -i       test tiparm rather than tparm"
+#endif
+       ," -p       test capabilities with no parameters but having padding"
+       ," -r NUM   repeat tests NUM times"
+#if HAVE_TIPARM_S
+       ," -s       test tiparm_s rather than tparm"
+#endif
+       ," -v       show values and results"
     };
     unsigned n;
     for (n = 0; n < SIZEOF(msg); ++n) {
        fprintf(stderr, "%s\n", msg[n]);
     }
-    ExitProgram(EXIT_FAILURE);
+    ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
 }
 
 #define PLURAL(n) n, (n != 1) ? "s" : ""
 #define COLONS(n) (n >= 1) ? ":" : ""
 
+#define NUMFORM "%10ld"
+/* *INDENT-OFF* */
+VERSION_COMMON()
+/* *INDENT-ON* */
+
 int
 main(int argc, char *argv[])
 {
+    int ch;
     int n;
     int r_run, t_run, n_run;
     char *old_term = getenv("TERM");
     int r_opt = 1;
     char *t_opt = 0;
-    int len_names = 0;         /* cur # of items in all_names[] */
-    int use_names = 10;                /* max # of items in all_names[] */
-    char **all_names = typeCalloc(char *, use_names);
-    int all_parms[10];         /* workspace for "-a" option */
+
+    int std_caps = 0;          /* predefine items in all_caps[] */
+    int len_caps = 0;          /* cur # of items in all_caps[] */
+    int max_caps = 10;         /* max # of items in all_caps[] */
+    char **all_caps = typeCalloc(char *, max_caps);
+
+    long all_parms[10];                /* workspace for "-a" option */
+
     int len_terms = 0;         /* cur # of items in all_terms[] */
-    int use_terms = 10;                /* max # of items in all_terms[] */
-    char **all_terms = typeCalloc(char *, use_terms);
+    int max_terms = 10;                /* max # of items in all_terms[] */
+    char **all_terms = typeCalloc(char *, max_terms);
+
+    int use_caps;
+    int max_name = 10;         /* max # of items in cap_name[] */
+    int max_data = 10;         /* max # of items in cap_data[] */
+    char **cap_name;
+    char **cap_data;
+
     int len_parms = 0;         /* cur # of items in num_parms[], str_parms[] */
-    int use_parms = argc + 10; /* max # of items in num_parms[], str_parms[] */
-    int *num_parms = typeCalloc(int, use_parms);
-    char **str_parms = typeCalloc(char *, use_parms);
+    int max_parms = argc + 10; /* max # of items in num_parms[], str_parms[] */
+    int *num_parms = typeCalloc(int, max_parms);
+    char **str_parms = typeCalloc(char *, max_parms);
+    long use_parms = 1;
 
-    if (all_names == 0 || all_terms == 0 || num_parms == 0 || str_parms == 0)
+    if (all_caps == 0 || all_terms == 0 || num_parms == 0 || str_parms == 0)
        failed("no memory");
 
-    while ((n = getopt(argc, argv, "T:ar:v")) != -1) {
-       switch (n) {
+    while ((ch = getopt(argc, argv, OPTS_COMMON "T:aipr:sv")) != -1) {
+       switch (ch) {
        case 'T':
            t_opt = optarg;
            break;
        case 'a':
            ++a_opt;
            break;
+#if HAVE_TIPARM
+       case 'i':
+           ++i_opt;
+           break;
+#endif
+       case 'p':
+           ++p_opt;
+           break;
        case 'r':
            r_opt = atoi(optarg);
            break;
+#if HAVE_TIPARM_S
+       case 's':
+           ++s_opt;
+           break;
+#endif
        case 'v':
            ++v_opt;
            break;
+       case OPTS_VERSION:
+           show_version(argv);
+           ExitProgram(EXIT_SUCCESS);
        default:
-           usage();
-           break;
+           usage(ch == OPTS_USAGE);
+           /* NOTREACHED */
        }
     }
 
@@ -213,14 +462,14 @@ main(int argc, char *argv[])
      */
     if (optind < argc) {
        if (!isNumeric(argv[optind])) {
-           all_names[len_names++] = strdup(argv[optind++]);
+           all_caps[len_caps++] = strdup(argv[optind++]);
        }
     }
 
     /*
      * Any remaining arguments must be possible parameter values.  If numeric,
-     * and "-a" is not set, use those as the maximum values within which the
-     * test parameters should vary.
+     * and "-a" is not set, use those as the actual values for which the
+     * capabilities are tested.
      */
     while (optind < argc) {
        if (isNumeric(argv[optind])) {
@@ -232,14 +481,16 @@ main(int argc, char *argv[])
        ++optind;
        ++len_parms;
     }
-    for (n = len_parms; n < use_parms; ++n) {
+    for (n = len_parms; n < max_parms; ++n) {
        static char dummy[1];
        str_parms[n] = dummy;
     }
     if (v_opt) {
        printf("%d parameter%s%s\n", PLURAL(len_parms), COLONS(len_parms));
-       for (n = 0; n < len_parms; ++n) {
-           printf(" %d: %d (%s)\n", n + 1, num_parms[n], str_parms[n]);
+       if (v_opt > 3) {
+           for (n = 0; n < len_parms; ++n) {
+               printf(" %d: %d (%s)\n", n + 1, num_parms[n], str_parms[n]);
+           }
        }
     }
 
@@ -260,9 +511,9 @@ main(int argc, char *argv[])
                while (t != s && isspace(UChar(t[-1])))
                    *--t = '\0';
                s = strdup(s);
-               if (len_terms + 2 >= use_terms) {
-                   use_terms *= 2;
-                   all_terms = typeRealloc(char *, use_terms, all_terms);
+               if (len_terms + 2 >= max_terms) {
+                   max_terms *= 2;
+                   all_terms = typeRealloc(char *, max_terms, all_terms);
                    if (all_terms == 0)
                        failed("no memory: all_terms");
                }
@@ -273,9 +524,9 @@ main(int argc, char *argv[])
            char *t;
            while ((t = strtok(s, ",")) != 0) {
                s = 0;
-               if (len_terms + 2 >= use_terms) {
-                   use_terms *= 2;
-                   all_terms = typeRealloc(char *, use_terms, all_terms);
+               if (len_terms + 2 >= max_terms) {
+                   max_terms *= 2;
+                   all_terms = typeRealloc(char *, max_terms, all_terms);
                    if (all_terms == 0)
                        failed("no memory: all_terms");
                }
@@ -288,8 +539,10 @@ main(int argc, char *argv[])
     all_terms[len_terms] = 0;
     if (v_opt) {
        printf("%d term%s:\n", PLURAL(len_terms));
-       for (n = 0; n < len_terms; ++n) {
-           printf(" %d: %s\n", n + 1, all_terms[n]);
+       if (v_opt > 3) {
+           for (n = 0; n < len_terms; ++n) {
+               printf(" %d: %s\n", n + 1, all_terms[n]);
+           }
        }
     }
 
@@ -300,34 +553,40 @@ main(int argc, char *argv[])
      * TODO: To address the "other" systems which do not follow SVr4,
      * just use the output from infocmp on $TERM.
      */
-    if (len_names == 0) {
+    if (len_caps == 0) {
 #if defined(HAVE_CURSES_DATA_BOOLNAMES) || defined(DECL_CURSES_DATA_BOOLNAMES)
        for (n = 0; strnames[n] != 0; ++n) {
-           if (len_names + 2 >= use_names) {
-               use_names *= 2;
-               all_names = typeRealloc(char *, use_names, all_names);
-               if (all_names == 0) {
-                   failed("no memory: all_names");
-               }
-           }
-           all_names[len_names++] = strdup(strnames[n]);
+           GrowArray(all_caps, max_caps, len_caps);
+           all_caps[len_caps++] = strdup(strnames[n]);
        }
 #else
-       all_names[len_names++] = strdup("cup");
-       all_names[len_names++] = strdup("sgr");
+       all_caps[len_caps++] = strdup("cup");
+       all_caps[len_caps++] = strdup("sgr");
 #endif
     }
-    all_names[len_names] = 0;
+    std_caps = len_caps;
+    all_caps[len_caps] = 0;
     if (v_opt) {
-       printf("%d name%s%s\n", PLURAL(len_names), COLONS(len_names));
-       for (n = 0; n < len_names; ++n) {
-           printf(" %d: %s\n", n + 1, all_names[n]);
+       printf("%d name%s%s\n", PLURAL(len_caps), COLONS(len_caps));
+       if (v_opt > 3) {
+           for (n = 0; n < len_caps; ++n) {
+               printf(" %d: %s\n", n + 1, all_caps[n]);
+           }
        }
     }
 
+    cap_name = typeMalloc(char *, (max_name = 1 + len_caps));
+    cap_data = typeMalloc(char *, (max_data = 1 + len_caps));
+
     if (r_opt <= 0)
        r_opt = 1;
 
+    if (a_opt) {
+       for (n = 0; n < max_parms; ++n)
+           if (num_parms[n])
+               use_parms *= (num_parms[n] + 1);
+    }
+
     for (r_run = 0; r_run < r_opt; ++r_run) {
        for (t_run = 0; t_run < len_terms; ++t_run) {
            int errs;
@@ -335,26 +594,68 @@ main(int argc, char *argv[])
            if (setupterm(all_terms[t_run], fileno(stdout), &errs) != OK) {
                printf("** skipping %s (errs:%d)\n", all_terms[t_run], errs);
            }
+#if NCURSES_XNAMES
+           len_caps = std_caps;
+           if (cur_term) {
+               TERMTYPE *term = (TERMTYPE *) cur_term;
+               for (n = STRCOUNT; n < NUM_STRINGS(term); ++n) {
+                   GrowArray(all_caps, max_caps, len_caps);
+                   GrowArray(cap_name, max_name, len_caps);
+                   GrowArray(cap_data, max_data, len_caps);
+                   all_caps[len_caps++] = strdup(ExtStrname(term, (int) n, strnames));
+               }
+           }
+#endif
+
+           /*
+            * Most of the capabilities have no parameters, e.g., they are
+            * function-keys or simple operations such as clear-display.
+            * Ignore those, since they do not really exercise tparm.
+            */
+           use_caps = 0;
+           for (n = 0; n < len_caps; ++n) {
+               char *value = tigetstr(all_caps[n]);
+               if (relevant(all_caps[n], value)) {
+                   cap_name[use_caps] = all_caps[n];
+                   cap_data[use_caps] = value;
+                   use_caps++;
+               }
+           }
+
+           if (v_opt) {
+               printf("[%d:%d] %d paramerized cap%s * %ld test-case%s \"%s\"\n",
+                      r_run + 1, r_opt,
+                      PLURAL(use_caps),
+                      PLURAL(use_parms),
+                      all_terms[t_run]);
+           }
 
-           if (v_opt)
-               printf("** testing %s\n", all_terms[t_run]);
-           if (len_names == 1) {
-               if (a_opt) {
-                   /* for each combination of values */
-                   memset(all_parms, 0, sizeof(all_parms));
-                   do {
-                       test_tparm(all_names[0], all_parms);
+           memset(all_parms, 0, sizeof(all_parms));
+           if (a_opt) {
+               /* for each combination of values */
+               do {
+                   for (n_run = 0; n_run < use_caps; ++n_run) {
+                       test_tparm(cap_name[n_run],
+                                  cap_data[n_run],
+                                  all_parms,
+                                  str_parms);
                    }
-                   while (increment(all_parms, num_parms, len_parms, 0));
-               } else {
-                   /* for the given values */
-                   test_tparm(all_names[0], num_parms);
                }
+               while (increment(all_parms, num_parms, len_parms, 0));
            } else {
-               for (n_run = 0; n_run < len_names; ++n_run) {
-                   test_tparm(all_names[n_run], num_parms);
+               /* for the given values */
+               for (n_run = 0; n_run < use_caps; ++n_run) {
+                   test_tparm(cap_name[n_run],
+                              cap_data[n_run],
+                              all_parms,
+                              str_parms);
                }
            }
+#if NCURSES_XNAMES
+           for (n = std_caps; n < len_caps; ++n) {
+               free(all_caps[n]);
+           }
+#endif
            if (cur_term != 0) {
                del_curterm(cur_term);
            } else {
@@ -362,11 +663,21 @@ main(int argc, char *argv[])
            }
        }
     }
+
+    printf("Tests:\n");
+    printf(NUMFORM " total\n", total_tests);
+    if (total_fails)
+       printf(NUMFORM " failed\n", total_fails);
+    printf("Characters:\n");
+    printf(NUMFORM " nulls\n", total_nulls);
+    printf(NUMFORM " controls\n", total_ctrls);
+    printf(NUMFORM " printable\n", total_print);
+    printf(NUMFORM " total\n", total_nulls + total_ctrls + total_print);
 #if NO_LEAKS
-    for (n = 0; n < len_names; ++n) {
-       free(all_names[n]);
+    for (n = 0; n < std_caps; ++n) {
+       free(all_caps[n]);
     }
-    free(all_names);
+    free(all_caps);
     free(old_term);
     for (n = 0; n < len_terms; ++n) {
        free(all_terms[n]);
@@ -374,6 +685,8 @@ main(int argc, char *argv[])
     free(all_terms);
     free(num_parms);
     free(str_parms);
+    free(cap_name);
+    free(cap_data);
 #endif
 
     ExitProgram(EXIT_SUCCESS);
@@ -381,7 +694,7 @@ main(int argc, char *argv[])
 
 #else /* !HAVE_TIGETSTR */
 int
-main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
+main(void)
 {
     failed("This program requires the terminfo functions such as tigetstr");
 }