From: Kenn H. <ke...@us...> - 2005-05-10 22:47:41
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15434 Modified Files: linkage.h Log Message: Remove obsolete cruft Index: linkage.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/linkage.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- linkage.h 9 May 2005 21:10:56 -0000 1.4 +++ linkage.h 10 May 2005 22:47:30 -0000 1.5 @@ -1,31 +1,7 @@ #ifndef _VAX_LINKAGE_H #define _VAX_LINKAGE_H -#ifdef __cplusplus -# define asmlinkage extern "C" -#else -# define asmlinkage -#endif - -/* FIXME: # is a comment sign under VAX assembly */ -#define SYMBOL_NAME_STR(X) #X -#define SYMBOL_NAME(X) X -#ifdef __STDC__ -# define SYMBOL_NAME_LABEL(X) X##: -#else -# define SYMBOL_NAME_LABEL(X) X/**/: -#endif - #define __ALIGN .balign 2 #define __ALIGN_STR ".balign 2" -#ifdef __ASSEMBLY__ -# define ALIGN __ALIGN -# define ALIGN_STR __ALIGN_STR -# define ENTRY(name) \ - .globl SYMBOL_NAME(name); \ - ALIGN; \ - SYMBOL_NAME_LABEL(name) -#endif /* __ASSEMBLY__ */ - #endif /* _VAX_LINKAGE_H */ |