diff options
author | Martin Mares <mj@ucw.cz> | 1999-12-06 13:51:04 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-12-06 13:51:04 +0000 |
commit | f78056fb2cf4554d5dcc50b5e0e79bc09ae825cf (patch) | |
tree | 0733bbab60ef3fd23c5481fccfebf1814e8ad98b /sysdep/unix/io.c | |
parent | 4ab5331c6370ba83dc7b228f9a94ccc1c64a973e (diff) |
Allow logging to stderr as well.
Diffstat (limited to 'sysdep/unix/io.c')
-rw-r--r-- | sysdep/unix/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index 7d6a6f22..45db1a10 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -83,7 +83,7 @@ static struct resclass rf_class = { }; void * -rfopen(pool *p, char *name, char *mode) +tracked_fopen(pool *p, char *name, char *mode) { FILE *f = fopen(name, mode); |