Lines Matching refs:name
23 DEFUN (name, arglist, args)
35 DEFUN_VOID (name)
39 obsolete -- EXFUN (name, (prototype)) -- obsolete.
50 the name is misleading and the result is ugly. So we just define a
62 the function name out of the mess. EXFUN should be considered
98 #define EXFUN(name, proto) name proto
99 #define DEFUN(name, arglist, args) name(args)
100 #define DEFUN_VOID(name) name(void)
102 #define PROTO(type, name, arglist) type name arglist
122 #define EXFUN(name, proto) name()
123 #define DEFUN(name, arglist, args) name arglist args;
124 #define DEFUN_VOID(name) name()
125 #define PROTO(type, name, arglist) type name ()