repo.or.cz
/
midnight-commander.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Original patch as attached on the bugreport
[midnight-commander.git]
/
src
/
logging.h
blob
6ab8f941d2c602437dae0262a81d821220b15004
1
#ifndef MC_LOGGING_H
2
#define MC_LOGGING_H
3
4
/*
5
This file provides an easy-to-use function for writing all kinds of
6
events into a central log file that can be used for debugging.
7
*/
8
9
extern
void
mc_log
(
const char
*, ...)
10
__attribute__
((
__format__
(
__printf__
,
1
,
2
)));
11
12
#endif