The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
/* This is a program that 'test.syms' test-compiles to determine if a function
   has an integer return value.

   'test.syms' defines macro SYM on the compile command.
*/

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

#include "c-config.h"

main() {
  int ret;

  ret = SYM;
}