xref: /nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/kernel/linux/completion.h (revision 104654410c56c573564690304ae786df310c91fc)
1 #ifndef __LINUX_COMPLETION_H__
2 #define __LINUX_COMPLETION_H__
3 
4 #if defined (__GNUC__)
5 struct completion { } ;
6 #elif defined (MSVC)
7 struct completion {int no; } ;
8 #else
9 #error "please use a right C compiler"
10 #endif
11 
12 #endif /* __LINUX_COMPLETION_H__ */
13 
14