Template
11 lines
183 B
C
11 lines
183 B
C
/*
|
|
* demo.h - fixture header, included by main.c and demo.c.
|
|
*/
|
|
|
|
#ifndef HELLOTHREADS_DEMO_H
|
|
#define HELLOTHREADS_DEMO_H
|
|
|
|
int demo_compute(int x);
|
|
|
|
#endif /* HELLOTHREADS_DEMO_H */
|