#ifndef UTILITY_DATE_H #define UTILITY_DATE_H /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: date.h 12757 2001-12-08 22:23:57Z chodorowski $ Desc: ClockData Lang: English */ #ifndef EXEC_TYPES_H # include #endif struct ClockData { UWORD sec; UWORD min; UWORD hour; UWORD mday; UWORD month; UWORD year; UWORD wday; }; #endif /* UTILITY_DATE_H */