Skip to content
Snippets Groups Projects
Commit ce6ab002 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Fix for compiling without debug.

Rev: src/svalue.h:1.61
parent c4ccb861
Branches
Tags
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
\*/ \*/
/* /*
* $Id: svalue.h,v 1.60 2000/07/04 00:43:58 mast Exp $ * $Id: svalue.h,v 1.61 2000/07/04 01:43:34 mast Exp $
*/ */
#ifndef SVALUE_H #ifndef SVALUE_H
#define SVALUE_H #define SVALUE_H
...@@ -305,6 +305,8 @@ static inline union anything *dmalloc_check_union(union anything *u,int type, ch ...@@ -305,6 +305,8 @@ static inline union anything *dmalloc_check_union(union anything *u,int type, ch
#define check_type(T) #define check_type(T)
#define check_refs(S) #define check_refs(S)
#define check_refs2(S,T) #define check_refs2(S,T)
#define dmalloc_check_svalue(S,L) (S)
#define dmalloc_check_union(U,T,L) (U)
#define add_ref(X) (X)->refs++ #define add_ref(X) (X)->refs++
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment