Update: orig2001_11_27_05_17 -> orig2001_11_27_22_58
[gnokii.git] / common / links / fbus.c
index 49c1332..63219c7 100644 (file)
   The various routines are called FBUS_(whatever).
 
   $Log$
-  Revision 1.1.1.1  2001/11/25 21:59:10  short
-  :pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Sun Nov 25 22:56 CET 2001
+  Revision 1.1.1.1.8.1  2001/11/27 23:06:09  short
+  Update: orig2001_11_27_05_17 -> orig2001_11_27_22_58
+
+  Revision 1.1.1.1.2.1  2001/11/27 22:48:37  short
+  Update: orig2001_11_27_05_17 -> orig2001_11_27_22_58
+
+  Revision 1.1.1.2  2001/11/27 22:01:16  short
+  :pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Tue Nov 27 22:58 CET 2001
+
+  Revision 1.14  2001/11/27 12:19:01  pkot
+  Cleanup, indentation, ANSI complaint preprocesor symbols (Jan Kratochvil, me)
 
   Revision 1.13  2001/11/17 20:14:15  pkot
   Nasty bug with counting message length. Workaround applied. Needs fixing.
 #include "links/utils.h"
 
 #ifndef WIN32
-  #include "device.h"
+#  include "device.h"
 #else
-  #include "win32/winserial.h"
-  #define device_write(a, b) WriteCommBlock(a, b)
-  #define device_read(a, b) ReadCommBlock(a, b)
-  #define sleep(x) Sleep((x) * 1000)
-  #define usleep(x) Sleep(((x) < 1000) ? 1 : ((x) / 1000))
+#  include "win32/winserial.h"
+#  define device_write(a, b) WriteCommBlock(a, b)
+#  define device_read(a, b) ReadCommBlock(a, b)
+#  define sleep(x) Sleep((x) * 1000)
+#  define usleep(x) Sleep(((x) < 1000) ? 1 : ((x) / 1000))
 #endif
 
 #define __links_fbus_c