1
0
Files
irix-657m-src/irix/cmd/snmp/include/debug.h
2022-09-29 17:59:04 +03:00

20 lines
289 B
C

#ifndef DEBUG_H
#define DEBUG_H
/*
* Copyright 1988 Silicon Graphics, Inc. All rights reserved.
*
* Debugging support: assertion and metering macros.
*/
#include <assert.h>
#ifdef sun
#include <stdio.h>
#endif
#ifdef METERING
#define METER(x) x
#else
#define METER(x)
#endif
#endif