diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-09-13 15:00:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-09-13 15:00:27 +0000 |
commit | bd31edf2fce64af24539a99b22239b7b6d4098b8 (patch) | |
tree | 40ab79f536fd2af7f08ad0710b57a64efd52e986 /io | |
parent | 33c3e20e7b48d4d7fc46eceda01fd8607fd0b415 (diff) | |
download | glibc-bd31edf2fce64af24539a99b22239b7b6d4098b8.tar glibc-bd31edf2fce64af24539a99b22239b7b6d4098b8.tar.gz glibc-bd31edf2fce64af24539a99b22239b7b6d4098b8.tar.bz2 glibc-bd31edf2fce64af24539a99b22239b7b6d4098b8.zip |
Update.
1998-09-13 Ulrich Drepper <drepper@cygnus.com>
* io/pwd.c (main): Add call to mtrace.
* malloc/mtrace.pl: Quote @ in string.
Diffstat (limited to 'io')
-rw-r--r-- | io/pwd.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -23,7 +23,12 @@ int main (void) { - char *dir = getcwd ((char *) NULL, 0); + char *dir; + + /* Let this program be used for debugging. */ + mtrace (); + + dir = getcwd ((char *) NULL, 0); if (dir == NULL) perror ("getcwd"); |