New operating system adapter "dummy" for stdio on POSIX-like systems

This commit is contained in:
2009-03-02 17:01:21 +00:00
parent 53e4483460
commit 8c56ca131f
6 changed files with 316 additions and 6 deletions

View File

@ -1,7 +1,7 @@
/* sg.c
Switcher for operating system dependent transport level modules of libburn.
Copyright (C) 2006 Thomas Schmitt <scdbackup@gmx.net>, provided under GPL
Copyright (C) 2009 Thomas Schmitt <scdbackup@gmx.net>, provided under GPL
*/
@ -10,8 +10,14 @@
#include "sg-freebsd.c"
#else
#ifdef __linux
#include "sg-linux.c"
#endif
#else
#include "sg-dummy.c"
#endif /* ! __linux */
#endif /* ! __FreeBSD__ */