mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
12 lines
138 B
C
Executable File
12 lines
138 B
C
Executable File
/*
|
|
* Log routines for the imlac simulation.
|
|
*/
|
|
|
|
#ifndef LOG_H
|
|
#define LOG_H
|
|
|
|
void vlog(char *fmt, ...);
|
|
extern char *LogPrefix;
|
|
|
|
#endif
|