Allow to supply searchpath defines as simple values instead of escaped C strings.

This commit is contained in:
Oliver Schmidt
2013-04-27 16:54:09 +02:00
parent 9d6ab944b8
commit ede72d78b2
4 changed files with 9 additions and 5 deletions

View File

@@ -48,6 +48,10 @@
/* Convert argument to C string */
#define _STRINGIZE(arg) #arg
#define STRINGIZE(arg) _STRINGIZE(arg)
/* A search path is a pointer to the list */
typedef struct Collection SearchPath;