diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-11-15T14·01+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-11-15T14·01+0100 |
commit | 8541d27fce95f1f6a4a6c89bcbc09503ff7ea092 (patch) | |
tree | 211d86e5d5724703fc5c58e10044b812089d9420 /src/libutil/util.hh | |
parent | 3acc8adcad4066329913cf9ad4e1ccc535f73032 (diff) |
Don't use std::cerr in a few places
Slightly scared of using std::cerr in a vforked process...
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 90413b0efe04..87b63f6e998a 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -148,7 +148,9 @@ void printMsg_(Verbosity level, const format & f); void warnOnce(bool & haveWarned, const format & f); -extern void (*writeToStderr) (const unsigned char * buf, size_t count); +void writeToStderr(const string & s); + +extern void (*_writeToStderr) (const unsigned char * buf, size_t count); /* Wrappers arount read()/write() that read/write exactly the |