home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD1.img / d1xx / d102 / dbug / llib-ldbug < prev    next >
Text File  |  1987-09-06  |  3KB  |  129 lines

  1. /*
  2.  ******************************************************************************
  3.  *                                          *
  4.  *                               N O T I C E                      *
  5.  *                                          *
  6.  *                  Copyright Abandoned, 1987, Fred Fish              *
  7.  *                                          *
  8.  *                                          *
  9.  *    This previously copyrighted work has been placed into the  public     *
  10.  *    domain  by  the  author  and  may be freely used for any purpose,     *
  11.  *    private or commercial.                              *
  12.  *                                          *
  13.  *    Because of the number of inquiries I was receiving about the  use     *
  14.  *    of this product in commercially developed works I have decided to     *
  15.  *    simply make it public domain to further its unrestricted use.   I     *
  16.  *    specifically  would  be  most happy to see this material become a     *
  17.  *    part of the standard Unix distributions by AT&T and the  Berkeley     *
  18.  *    Computer  Science  Research Group, and a standard part of the GNU     *
  19.  *    system from the Free Software Foundation.                  *
  20.  *                                          *
  21.  *    I would appreciate it, as a courtesy, if this notice is  left  in     *
  22.  *    all copies and derivative works.  Thank you.                  *
  23.  *                                          *
  24.  *    The author makes no warranty of any kind  with  respect  to  this     *
  25.  *    product  and  explicitly disclaims any implied warranties of mer-     *
  26.  *    chantability or fitness for any particular purpose.              *
  27.  *                                          *
  28.  ******************************************************************************
  29.  */
  30.  
  31.  
  32. /*
  33.  *  FILE
  34.  *
  35.  *    llib-ldbug    lint library source for debugging package
  36.  *
  37.  *  SCCS ID
  38.  *
  39.  *    @(#)llib-ldbug    1.8 9/5/87
  40.  *
  41.  *  DESCRIPTION
  42.  *
  43.  *    Function definitions for use in building lint library.
  44.  *    Note that these must stay in syncronization with actual
  45.  *    declarations in "dbug.c".
  46.  *
  47.  */
  48.  
  49.  
  50. /*LINTLIBRARY*/
  51.  
  52. #include <stdio.h>
  53.  
  54. #define VOID void
  55. typedef int BOOLEAN;
  56. #define FALSE 0
  57. #define ARGLIST a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15
  58.  
  59. int _db_on_ = FALSE;
  60. int _db_pon_ = FALSE;
  61. FILE *_db_fp_ = stderr;
  62. FILE *_db_pfp_ = stderr;
  63. char *_db_process_ = "dbug";
  64.  
  65. VOID _db_push_ (control)
  66. char *control;
  67. {
  68. }
  69.  
  70. VOID _db_pop_ ()
  71. {
  72. }
  73.  
  74. VOID _db_enter_ (_func_, _file_, _line_, _sfunc_, _sfile_, _slevel_)
  75. char *_func_;
  76. char *_file_;
  77. int _line_;
  78. char **_sfunc_;
  79. char **_sfile_;
  80. int *_slevel_;
  81. {
  82. }
  83.  
  84. VOID _db_return_ (_line_, _sfunc_, _sfile_, _slevel_)
  85. int _line_;
  86. char **_sfunc_;
  87. char **_sfile_;
  88. int *_slevel_;
  89. {
  90. }
  91.  
  92. VOID _db_pargs_ (_line_, keyword)
  93. int _line_;
  94. char *keyword;
  95. {
  96. }
  97.  
  98. /*VARARGS1*/
  99. VOID _db_doprnt_ (format, ARGLIST)
  100. char *format;
  101. long ARGLIST;
  102. {
  103. }
  104.  
  105. /* WARNING -- the following function is obsolete and may not be supported */
  106. /* in future releases... */
  107.  
  108. /*VARARGS3*/
  109. VOID _db_printf_ (_line_, keyword, format, ARGLIST)
  110. int _line_;
  111. char *keyword,  *format;
  112. long ARGLIST;
  113. {
  114. }
  115.  
  116. BOOLEAN _db_keyword_ (keyword)
  117. char *keyword;
  118. {
  119.     return (0);
  120. }
  121.  
  122. VOID _db_longjmp_ ()
  123. {
  124. }
  125.  
  126. VOID _db_setjmp_ ()
  127. {
  128. }
  129.