17 lines
482 B
C
17 lines
482 B
C
|
#ifndef MY_DEFINITIONS_CUSTOMER_H
|
||
|
#define MY_DEFINITIONS_CUSTOMER_H
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* File: customer.h
|
||
|
* Purpose: customer thread
|
||
|
* Course: bsy
|
||
|
* Author: M. Thaler, 2011
|
||
|
* Revision: 5/2012
|
||
|
* Version: v.fs20
|
||
|
*******************************************************************************/
|
||
|
|
||
|
void *customer(void* data);
|
||
|
|
||
|
//******************************************************************************
|
||
|
#endif
|