Home | History | Annotate | Download | only in lib

Lines Matching defs:getcwd

267 /* Include the headers that might declare getcwd so that they will not
276 <http://www.opengroup.org/susv3xsh/getcwd.html>.
277 Additionally, the gnulib module 'getcwd' guarantees the following GNU
281 # define getcwd rpl_getcwd
282 extern char * getcwd (char *buf, size_t size);
285 # undef getcwd
286 # define getcwd(b,s) \
287 (GL_LINK_WARNING ("getcwd is unportable - " \
288 "use gnulib module getcwd for portability"), \
289 getcwd (b, s))