1/*
2 * Copyright 2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_KERNEL_LIB_H
6#define _KERNEL_KERNEL_LIB_H
7
8
9#include <pthread.h>
10
11
12#define pthread_testcancel()	do {} while (false)
13
14
15#endif	// _KERNEL_KERNEL_LIB_H
16