Rudiments
/home/dmuse/src/rudiments/include/rudiments/private/serialportprofileincludes.h
00001 // Copyright (c) 2004 David Muse
00002 // See the COPYING file for more information.
00003 
00004 #include <rudiments/private/dll.h>
00005 #include <rudiments/private/inttypes.h>
00006 
00007 #ifdef RUDIMENTS_HAVE_TERMIOS_H
00008         #include <termios.h>
00009 #else
00010         #define NCCS    32;
00011         struct termios {
00012                 uint32_t        c_iflag;
00013                 uint32_t        c_oflag;
00014                 uint32_t        c_cflag;
00015                 uint32_t        c_lflag;
00016                 unsigned char   c_cc[NCCS];
00017         };
00018 #endif