Home | History | Annotate | Download | only in linux-lib

Lines Matching refs:function

5 #  define _GL_WARN_ON_USE(function, message) \
6 extern __typeof__ (function) function __attribute__ ((__warning__ (message)))
8 /* Verify the existence of the function. */
9 # define _GL_WARN_ON_USE(function, message) \
10 extern __typeof__ (function) function
12 # define _GL_WARN_ON_USE(function, message) \
17 /* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string")
18 is like _GL_WARN_ON_USE (function, "string"), except that the function is
25 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
26 extern rettype function parameters_and_attributes \
29 /* Verify the existence of the function. */
30 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
31 extern rettype function parameters_and_attributes
33 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \