Revision 505bdd3d2982d4712301fe3416f546e46fa72eae authored by Brad King on 26 March 2019, 14:58:08 UTC, committed by Brad King on 26 March 2019, 14:58:08 UTC
2 parent s c22a2b4 + b127e0c
Raw File
CheckVariableExists.c
#ifdef CHECK_VARIABLE_EXISTS

extern int CHECK_VARIABLE_EXISTS;

#  ifdef __CLASSIC_C__
int main()
{
  int ac;
  char* av[];
#  else
int main(int ac, char* av[])
{
#  endif
  if (ac > 1000) {
    return *av[0];
  }
  return CHECK_VARIABLE_EXISTS;
}

#else /* CHECK_VARIABLE_EXISTS */

#  error "CHECK_VARIABLE_EXISTS has to specify the variable"

#endif /* CHECK_VARIABLE_EXISTS */
back to top