00001 /*! 00002 * \file cpu_reserve/server/src/corba.c 00003 * \brief Corba functions 00004 * 00005 * \date 08/25/2004 00006 * \author Jork Loeser <jork.loeser@inf.tu-dresden.de> 00007 * 00008 */ 00009 /* (c) 2004 Technische Universitaet Dresden 00010 * This file is part of DROPS, which is distributed under the terms of the 00011 * GNU General Public License 2. Please see the COPYING file for details. 00012 */ 00013 #include <stdlib.h> 00014 #include <dice/dice.h> 00015 00016 void* CORBA_alloc(unsigned long size){ 00017 return malloc(size); 00018 } 00019 void CORBA_free(void *ptr){ 00020 return free(ptr); 00021 } 00022