]> arthur.barton.de Git - netatalk.git/blob - include/atalk/paths.h
Writing metadata xattr on directories with sticky bit set, FR#94
[netatalk.git] / include / atalk / paths.h
1 #ifndef ATALK_PATHS_H
2 #define ATALK_PATHS_H 1
3
4 /* we need a way of concatenating strings */
5 #ifdef __STDC__
6 #ifdef HAVE_BROKEN_CPP
7 #define BROKEN_ECHO(a)    a
8 #define ATALKPATHCAT(a,b) BROKEN_ECHO(a)##BROKEN_ECHO(b)
9 #else
10 #define ATALKPATHCAT(a,b) a b
11 #endif
12 #else
13 #define ATALKPATHCAT(a,b) a/**/b
14 #endif
15
16 #endif /* atalk/paths.h */
17