File: getdelim.m4

package info (click to toggle)
rcs-blame 1.4%2B20240206-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,816 kB
  • sloc: ansic: 15,922; sh: 10,108; makefile: 399; yacc: 389; lex: 156
file content (9 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
AC_DEFUN([gl_FUNC_GETDELIM],
[
  AC_REPLACE_FUNCS(getdelim)
  AC_CHECK_DECLS(getdelim)

  if test $ac_cv_func_getdelim = no; then
    AC_CHECK_FUNCS([flockfile funlockfile])
  fi
])