10 lines
101 B
C
10 lines
101 B
C
|
#ifndef SYNC_H
|
||
|
#define SYNC_H
|
||
|
|
||
|
class sync {
|
||
|
public:
|
||
|
static void yield();
|
||
|
};
|
||
|
|
||
|
#endif /* SYNC_H */
|