summaryrefslogtreecommitdiff
path: root/ruby_2_2/ccan/str/str.h
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/ccan/str/str.h')
-rw-r--r--ruby_2_2/ccan/str/str.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/ruby_2_2/ccan/str/str.h b/ruby_2_2/ccan/str/str.h
deleted file mode 100644
index 9a9da9cd3f..0000000000
--- a/ruby_2_2/ccan/str/str.h
+++ /dev/null
@@ -1,16 +0,0 @@
-/* CC0 (Public domain) - see ccan/licenses/CC0 file for details */
-#ifndef CCAN_STR_H
-#define CCAN_STR_H
-/**
- * stringify - Turn expression into a string literal
- * @expr: any C expression
- *
- * Example:
- * #define PRINT_COND_IF_FALSE(cond) \
- * ((cond) || printf("%s is false!", stringify(cond)))
- */
-#define stringify(expr) stringify_1(expr)
-/* Double-indirection required to stringify expansions */
-#define stringify_1(expr) #expr
-
-#endif /* CCAN_STR_H */