summaryrefslogblamecommitdiffstats
path: root/cpukit/include/rtems/concat.h
blob: 22036b464e76db40f0731084f8020861a1eb3079 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                       
  

                                                         
                                                           
                                                        




                                         

                       






                                   
                                         

      
/**
 * @file rtems/concat.h
 *
 * This include file defines ANSI concatenation macros.
 */

/*
 *  Copyright (c) 2004,2005 Ralf Corsepius, Ulm, Germany.
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#ifndef _RTEMS_CONCAT_H
#define _RTEMS_CONCAT_H

/* ANSI concatenation macros.  */

#define CONCAT1(a, b) CONCAT2(a, b)
#define CONCAT2(a, b) a ## b

#define EXPAND0(x) x
#define CONCAT0(a,b) EXPAND0(a)EXPAND0(b)

#endif