ddk: update includes

git-svn-id: svn://kolibrios.org@6588 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2016-10-12 18:46:14 +00:00
parent c6a90cef0f
commit 8f3ca726d6
58 changed files with 13344 additions and 11 deletions

View File

@@ -3,6 +3,8 @@
#include <linux/compiler.h>
int printf(const char *fmt, ...);
#define __WARN() printf("\nWARNING: at %s:%d\n", __FILE__, __LINE__)
//#define __WARN_printf(arg...) printf("\nWARNING: at %s:%d\n", __FILE__, __LINE__)
#define __WARN_printf(arg...) do { printf(arg); __WARN(); } while (0)