Codebase list libcurses-perl / HEAD testsym.c
HEAD

Tree @HEAD (Download .tar.gz)

testsym.c @HEADraw · history · blame

/* This is a program that 'testsyms' test-compiles to determine if a symbol
   exists in the Curses library.

   'testsyms' defines macro SYM on the compile command.
*/

#define _XOPEN_SOURCE_EXTENDED 1  /* We expect wide character functions */

#include "config.h"
#include "c-config.h"

int
main() {
  SYM;
}