Skip to content
Snippets Groups Projects
Commit f8153c94 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

added macros for expanding and concatenating symbols

Rev: src/pike_macros.h:1.21
parent 6c19816d
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
\*/
/*
* $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,6 +95,11 @@
}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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment