The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#include <string.h>

#define STRING "Whatever"

int main()
{char *e;
 char *p = strdup(STRING);
 if (!p || strcmp(p,STRING))
  exit(1);
 return 0;
}