Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


(no commit message)
[palacios.git] / palacios / include / geekos / symbol.h
1 /*
2  * Symbol mangling macros
3  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
4  * $Revision: 1.1.1.1 $
5  * 
6  * The _S macro mangles a symbol name into whatever format is
7  * needed for external linkage.  E.g., prepend an underscore
8  * for PECOFF.
9  */
10
11 #ifndef GEEKOS_SYMBOL_H
12 #define GEEKOS_SYMBOL_H
13
14 #ifdef NEED_UNDERSCORE
15 #  define _S(sym) "_" #sym
16 #else
17 #  define _S(sym) #sym
18 #endif
19
20 #endif  /* GEEKOS_SYMBOL_H */