2006-10-13 10:22:21 +00:00
|
|
|
|
2006-11-16 11:17:55 +00:00
|
|
|
/* sg.c
|
|
|
|
Switcher for operating system dependent transport level modules of libburn.
|
|
|
|
Copyright (C) 2006 Thomas Schmitt <scdbackup@gmx.net>, provided under GPL
|
|
|
|
*/
|
|
|
|
|
2006-10-13 10:22:21 +00:00
|
|
|
|
|
|
|
#ifdef __FreeBSD__
|
|
|
|
|
|
|
|
#include "sg-freebsd.c"
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include "sg-linux.c"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|