Subversion Repositories dashGPS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _SPLICE_H_
  2. #define _SPLICE_H_
  3.  
  4. #define SPLICE(a,b) SPLICE_1(a,b)
  5. #define SPLICE_1(a,b) SPLICE_2(a,b)
  6. #define SPLICE_2(a,b) a##b
  7.  
  8. #endif /* _SPLICE_H_ */
  9.