snp-lab-code/P09_Prozesse_und_Threads/Daemon_Prozesse/TimeDaemon.h

15 lines
442 B
C
Raw Permalink Normal View History

2020-04-26 15:02:50 +02:00
/******************************************************************************
* File: TimeDaemon.h
* Original Autor: M. Thaler (Modul BSY)
* Aufgabe: function prototype of time daemon
******************************************************************************/
#ifndef TIME_DAEMON
#define TIME_DAEMON
void TimeDaemon(void *);
#endif
//*****************************************************************************