home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d0xx / d041 / dbug.lha / Dbug / llib-ldbug < prev    next >
Encoding:
Text File  |  1986-11-27  |  2.2 KB  |  113 lines

  1. /************************************************************************
  2.  *                                    *
  3.  *            Copyright (c) 1984, Fred Fish            *
  4.  *                All Rights Reserved                *
  5.  *                                    *
  6.  *    This software and/or documentation is released for public    *
  7.  *    distribution for personal, non-commercial use only.        *
  8.  *    Limited rights to use, modify, and redistribute are hereby    *
  9.  *    granted for non-commercial purposes, provided that all        *
  10.  *    copyright notices remain intact and all changes are clearly    *
  11.  *    documented.  The author makes no warranty of any kind with    *
  12.  *    respect to this product and explicitly disclaims any implied    *
  13.  *    warranties of merchantability or fitness for any particular    *
  14.  *    purpose.                            *
  15.  *                                    *
  16.  ************************************************************************
  17.  */
  18.  
  19.  
  20. /*
  21.  *  FILE
  22.  *
  23.  *    llib-ldbug    lint library source for debugging package
  24.  *
  25.  *  SCCS ID
  26.  *
  27.  *    @(#)llib-ldbug    1.7 10/29/86
  28.  *
  29.  *  DESCRIPTION
  30.  *
  31.  *    Function definitions for use in building lint library.
  32.  *    Note that these must stay in syncronization with actual
  33.  *    declarations in "dbug.c".
  34.  *
  35.  */
  36.  
  37.  
  38. /*LINTLIBRARY*/
  39.  
  40. #include <stdio.h>
  41. #define VOID void
  42. #define FALSE 0
  43.  
  44. int _db_on_ = FALSE;
  45. FILE *_db_fp_ = stderr;
  46. char *_db_process_ = "dbug";
  47.  
  48. VOID _db_push_ (control)
  49. char *control;
  50. {
  51. }
  52.  
  53. VOID _db_pop_ ()
  54. {
  55. }
  56.  
  57. VOID _db_enter_ (_func_, _file_, _line_, _sfunc_, _sfile_, _slevel_)
  58. char *_func_;
  59. char *_file_;
  60. int _line_;
  61. char **_sfunc_;
  62. char **_sfile_;
  63. int *_slevel_;
  64. {
  65. }
  66.  
  67. VOID _db_return_ (_line_, _sfunc_, _sfile_, _slevel_)
  68. int _line_;
  69. char **_sfunc_;
  70. char **_sfile_;
  71. int *_slevel_;
  72. {
  73. }
  74.  
  75. VOID _db_pargs_ (_line_, keyword)
  76. int _line_;
  77. char *keyword;
  78. {
  79. }
  80.  
  81. /*VARARGS1*/
  82. VOID _db_doprnt_ (format, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11)
  83. char *format;
  84. int a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11;
  85. {
  86. }
  87.  
  88. /* WARNING -- the following function is obsolete and may not be supported */
  89. /* in future releases... */
  90.  
  91. /*VARARGS3*/
  92. VOID _db_printf_ (_line_, keyword, format, 
  93.     a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11)
  94. int _line_;
  95. char *keyword,  *format;
  96. int a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11;
  97. {
  98. }
  99.  
  100. int _db_keyword_ (keyword)
  101. char *keyword;
  102. {
  103.     return (0);
  104. }
  105.  
  106. VOID _db_longjmp_ ()
  107. {
  108. }
  109.  
  110. VOID _db_setjmp_ ()
  111. {
  112. }
  113.