smart-green-house/rtt-uart-nb/rt-thread/components/dfs/filesystems/jffs2/kernel/linux/completion.h

14 lines
256 B
C
Raw Permalink Normal View History

2023-10-28 18:00:47 +08:00
#ifndef __LINUX_COMPLETION_H__
#define __LINUX_COMPLETION_H__
#if defined (__GNUC__)
struct completion { } ;
#elif defined (MSVC)
struct completion {int no; } ;
#else
#error "please use a right C compiler"
#endif
#endif /* __LINUX_COMPLETION_H__ */