aboutsummaryrefslogtreecommitdiffstats
path: root/strftime.c
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2017-04-13 16:05:54 +0900
committerKazuki Yamaguchi <k@rhe.jp>2017-09-09 16:32:29 +0900
commit440876c629651d32c12551abb0f157aebe996546 (patch)
treeaeb6efc1eacd01f94d0bfd7d79b22cad0e882fcf /strftime.c
parent2d9509646b83ffd980a8fadfbc986b6b47b38f37 (diff)
downloadruby-440876c629651d32c12551abb0f157aebe996546.tar.gz
configure.in: don't check whether string literal concatenation works
It's part of C89.
Diffstat (limited to 'strftime.c')
-rw-r--r--strftime.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/strftime.c b/strftime.c
index ebb587c379..8dc958b99c 100644
--- a/strftime.c
+++ b/strftime.c
@@ -144,10 +144,6 @@ max(int a, int b)
return (a > b ? a : b);
}
-#ifdef NO_STRING_LITERAL_CONCATENATION
-#error No string literal concatenation
-#endif
-
#define add(x,y) (rb_funcall((x), '+', 1, (y)))
#define sub(x,y) (rb_funcall((x), '-', 1, (y)))
#define mul(x,y) (rb_funcall((x), '*', 1, (y)))