pike.git/
src/
pike_macros.h
Branch:
Tag:
Non-build tags
All tags
No tags
2000-10-10
2000-10-10 00:00:28 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
f8153c948d0d2316c43f04d4f9190977c9f1216c (
8
lines) (+
7
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
added macros for expanding and concatenating symbols
Rev: src/pike_macros.h:1.21
5:
\*/ /*
-
* $Id: pike_macros.h,v 1.
20
2000/
08
/10
09
:
20
:
49
grubba
Exp $
+
* $Id: pike_macros.h,v 1.
21
2000/
10
/10
00
:
00
:
28
hubbe
Exp $
*/ #ifndef MACROS_H #define MACROS_H
95:
}while(0)
+
#define PIKE_XCONCAT(X,Y) PIKE_CONCAT(X,Y)
+
#define PIKE_XCONCAT3(X,Y,Z) PIKE_CONCAT(X,Y,Z)
+
#define PIKE_XCONCAT4(X,Y,Z,Q) PIKE_CONCAT(X,Y,Z,Q)
+
+
/* Needed for fsort_template.h */ int my_log2(size_t x); #endif