A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
at master 38 lines 725 B view raw
1/* timeb.h -- An implementation of the standard Unix <sys/timeb.h> file. 2 Written by Ian Lance Taylor <ian@cygnus.com> 3 Public domain; no rights reserved. 4 5 <sys/timeb.h> declares the structure used by the ftime function, as 6 well as the ftime function itself. Newlib does not provide an 7 implementation of ftime. */ 8 9#ifndef _SYS_TIMEB_H 10 11#ifdef __cplusplus 12extern "C" { 13#endif 14 15#define _SYS_TIMEB_H 16 17#include <_ansi.h> 18 19#ifndef __time_t_defined 20typedef _TIME_T_ time_t; 21#define __time_t_defined 22#endif 23 24struct timeb 25{ 26 time_t time; 27 unsigned short millitm; 28 short timezone; 29 short dstflag; 30}; 31 32extern int ftime _PARAMS ((struct timeb *)); 33 34#ifdef __cplusplus 35} 36#endif 37 38#endif /* ! defined (_SYS_TIMEB_H) */