~pac72/ubuntu/lucid/ddd/devel

« back to all changes in this revision

Viewing changes to libiberty/getpwd.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2004-07-22 03:49:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040722034937-cysl08t1jvba4jrx
Tags: 1:3.3.9-3
USERINFO has been renamed to USERINFO.txt; adjust debian/rules code
to match, to get correct information on the About DDD dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* getpwd.c - get the working directory */
2
2
 
 
3
/*
 
4
 
 
5
@deftypefn Supplemental char* getpwd (void)
 
6
 
 
7
Returns the current working directory.  This implementation caches the
 
8
result on the assumption that the process will not call @code{chdir}
 
9
between calls to @code{getpwd}.
 
10
 
 
11
@end deftypefn
 
12
 
 
13
*/
 
14
 
3
15
#ifdef HAVE_CONFIG_H
4
16
#include "config.h"
5
17
#endif