rt-thread-official/components/dfs/filesystems/jffs2/kernel/linux/completion.h

14 lines
256 B
C
Raw Normal View History

#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__ */