repo.or.cz
/
vulkan-misc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
simplification/taylorization and fix
[vulkan-misc.git]
/
2d
/
blit
/
log.h
blob
b51eaf0c8d27b16e792f721dda144dd4fa10245d
1
#ifndef APP_LOG_H
2
#define APP_LOG_H
3
/*
4
* this is public domain without any warranties of any kind
5
* Sylvain BERTRAND
6
*/
7
/* XXX: KEEP AN EYE ON ABBREVIATIONS, ALWAYS */
8
#include <stdio.h>
9
#define LOG(fmt,...) dprintf(2,fmt,##__VA_ARGS__)
10
#endif
/* APP_LOG_H */