From: idgay Date: Thu, 7 Jun 2007 16:57:22 +0000 (+0000) Subject: don't use empyty structs (non-standard) X-Git-Tag: release_tools_1_2_4_1~144 X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=commitdiff_plain;h=1e8f9191b37fd89412700bcf006d3b3023b16a23;p=tinyos-2.x.git don't use empyty structs (non-standard) --- diff --git a/tos/lib/timer/Timer.h b/tos/lib/timer/Timer.h index 0cc6d794..932e6d5d 100644 --- a/tos/lib/timer/Timer.h +++ b/tos/lib/timer/Timer.h @@ -26,9 +26,9 @@ #ifndef TIMER_H #define TIMER_H -typedef struct { } TMilli; -typedef struct { } T32khz; -typedef struct { } TMicro; +typedef struct { int notUsed; } TMilli; +typedef struct { int notUsed; } T32khz; +typedef struct { int notUsed; } TMicro; #define UQ_TIMER_MILLI "HilTimerMilliC.Timer" #define UQ_TIMER_32KHZ "HilTimer32khzC.Timer"