Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0+
0002 
0003 #include <linux/export.h>
0004 
0005 #include "test_modules.h"
0006 
0007 #define DEFINE_RETURN(i) \
0008     int test_modules_return_ ## i(void) \
0009     { \
0010         return 1 ## i - 10000; \
0011     } \
0012     EXPORT_SYMBOL_GPL(test_modules_return_ ## i)
0013 REPEAT_10000(DEFINE_RETURN);