Lines Matching refs:lchmod
335 /* The lchmod replacement follows symbolic links. Callers should take
336 this into account; lchmod should be applied only to arguments that
337 are known to not be symbolic links. On hosts that lack lchmod,
339 invocation of lchmod, but we know of no workarounds that are
340 reliable in general. You might try requesting support for lchmod
342 # define lchmod chmod
345 extern int lchmod (const char *filename, mode_t mode);
348 # undef lchmod
349 # define lchmod(f,m) \
350 (GL_LINK_WARNING ("lchmod is unportable - " \
351 "use gnulib module lchmod for portability"), \
352 lchmod (f, m))