home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d2xx / d232 / dbug.lha / Dbug / llib-ldbug < prev    next >
Text File  |  1989-08-02  |  3KB  |  130 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.9 7/25/89
  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_, _sframep_)
  75. char *_func_;
  76. char *_file_;
  77. int _line_;
  78. char **_sfunc_;
  79. char **_sfile_;
  80. int *_slevel_;
  81. char ***_sframep_;
  82. {
  83. }
  84.  
  85. VOID _db_return_ (_line_, _sfunc_, _sfile_, _slevel_)
  86. int _line_;
  87. char **_sfunc_;
  88. char **_sfile_;
  89. int *_slevel_;
  90. {
  91. }
  92.  
  93. VOID _db_pargs_ (_line_, keyword)
  94. int _line_;
  95. char *keyword;
  96. {
  97. }
  98.  
  99. /*VARARGS1*/
  100. VOID _db_doprnt_ (format, ARGLIST)
  101. char *format;
  102. long ARGLIST;
  103. {
  104. }
  105.  
  106. /* WARNING -- the following function is obsolete and may not be supported */
  107. /* in future releases... */
  108.  
  109. /*VARARGS3*/
  110. VOID _db_printf_ (_line_, keyword, format, ARGLIST)
  111. int _line_;
  112. char *keyword,  *format;
  113. long ARGLIST;
  114. {
  115. }
  116.  
  117. BOOLEAN _db_keyword_ (keyword)
  118. char *keyword;
  119. {
  120.     return (0);
  121. }
  122.  
  123. VOID _db_longjmp_ ()
  124. {
  125. }
  126.  
  127. VOID _db_setjmp_ ()
  128. {
  129. }
  130.