util.h 404 B

123456789101112131415161718
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #ifndef UTIL_OPT_UTIL_H
  6. #define UTIL_OPT_UTIL_H
  7. /* util/opt/util.c */
  8. void error(char *s, ...);
  9. #ifndef NDEBUG
  10. void badassertion(char *file, unsigned int line);
  11. #endif
  12. #ifdef DIAGOPT
  13. void optim(int n);
  14. #endif
  15. #endif /* UTIL_OPT_UTIL_H */