l_print3ack.c 642 B

123456789101112131415161718192021222324252627282930
  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. /* $Header$ */
  6. /* A C K P R I N T M O D U L E D E F I N T I O N S */
  7. #ifdef lint
  8. #include <system.h>
  9. /* LINTLIBRARY */
  10. /* FORMAT0 $
  11. %[bdox] = int %l[bdox] = long
  12. %c = int %s = char *
  13. %u = unsigned int
  14. $ */
  15. print(format) char *format; { ; }
  16. /* FORMAT1 */
  17. fprint(filep, format) File *filep; char *format; { ; }
  18. /* FORMAT1 */
  19. sprint(s, format) char *s; char *format; { ; }
  20. /* FORMAT1 */
  21. doprnt(filep, format) File *filep; char *format; { ; }
  22. #endif /* lint */