From 1e8f9191b37fd89412700bcf006d3b3023b16a23 Mon Sep 17 00:00:00 2001 From: idgay Date: Thu, 7 Jun 2007 16:57:22 +0000 Subject: [PATCH] don't use empyty structs (non-standard) --- tos/lib/timer/Timer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" -- 2.39.2