]> Dogcows Code - chaz/tar/blob - c-bs-a.m4
d9e6e11e808a8c20a97ac3133c09be87e2275fcb
[chaz/tar] / c-bs-a.m4
1 #serial 3
2
3 dnl From Paul Eggert.
4
5 AC_DEFUN(AC_C_BACKSLASH_A,
6 [
7 AC_CACHE_CHECK([whether backslash-a works in strings], ac_cv_c_backslash_a,
8 [AC_TRY_COMPILE([],
9 [
10 #if '\a' == 'a'
11 syntax error;
12 #endif
13 char buf['\a' == 'a' ? -1 : 1];
14 buf[0] = '\a';
15 return buf[0] != "\a"[0];
16 ],
17 ac_cv_c_backslash_a=yes,
18 ac_cv_c_backslash_a=no)])
19 if test $ac_cv_c_backslash_a = yes; then
20 AC_DEFINE(HAVE_C_BACKSLASH_A, 1,
21 [Define if backslash-a works in C strings.])
22 fi
23 ])
This page took 0.034035 seconds and 3 git commands to generate.