l_dummy.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. /*
  7. *The following functions are hacked to null-functions (i.e. they
  8. * do nothing). This needs another solution in the future.
  9. */
  10. #include "lint.h"
  11. #ifdef LINT
  12. #include "arith.h"
  13. #include "label.h"
  14. C_close(){}
  15. int C_busy(){return 0;}
  16. /* More routines */
  17. /* ARGSUSED */
  18. CC_bhcst(ps_xxx,n,w,i) arith n,w; {}
  19. /* ARGSUSED */
  20. CC_crcst(ps_xxx,v) arith v; {}
  21. /* ARGSUSED */
  22. CC_crdlb(ps_xxx,v,s) label v; arith s; {}
  23. /* ARGSUSED */
  24. CC_crdnam(ps_xxx,v,s) char *v; arith s; {}
  25. /* ARGSUSED */
  26. CC_crfcon(ps_xxx,v,s) char *v; arith s; {}
  27. /* ARGSUSED */
  28. CC_cricon(ps_xxx,v,s) char *v; arith s; {}
  29. /* ARGSUSED */
  30. CC_crilb(ps_xxx,v) label v; {}
  31. /* ARGSUSED */
  32. CC_crpnam(ps_xxx,v) char *v; {}
  33. /* ARGSUSED */
  34. CC_crscon(ps_xxx,v,s) char *v; arith s; {}
  35. /* ARGSUSED */
  36. CC_crucon(ps_xxx,v,s) char *v; arith s; {}
  37. /* ARGSUSED */
  38. CC_cst(l) {}
  39. /* ARGSUSED */
  40. CC_dfdlb(l) label l; {}
  41. /* ARGSUSED */
  42. CC_dfdnam(s) char *s; {}
  43. /* ARGSUSED */
  44. CC_dfilb(l) label l; {}
  45. /* ARGSUSED */
  46. CC_end(l) arith l; {}
  47. CC_msend() {}
  48. /* ARGSUSED */
  49. CC_msstart(ms) {}
  50. /* ARGSUSED */
  51. CC_opcst(op_xxx,c) arith c; {}
  52. /* ARGSUSED */
  53. CC_opdlb(op_xxx,g,o) label g; arith o; {}
  54. /* ARGSUSED */
  55. CC_opilb(op_xxx,b) label b; {}
  56. /* ARGSUSED */
  57. CC_oppnam(op_xxx,p) char *p; {}
  58. /* ARGSUSED */
  59. CC_pronarg(s) char *s; {}
  60. /* ARGSUSED */
  61. CC_psdlb(ps_xxx,l) label l; {}
  62. /* ARGSUSED */
  63. CC_psdnam(ps_xxx,s) char *s; {}
  64. /* ARGSUSED */
  65. CC_pspnam(ps_xxx,s) char *s; {}
  66. /* ARGSUSED */
  67. CC_scon(v,s) char *s; {}
  68. #endif LINT