home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / dldummy.c < prev    next >
C/C++ Source or Header  |  1998-03-25  |  2KB  |  50 lines

  1. /* $Id: dldummy.c,v 1.5 1998/03/25 12:45:38 zeller Exp $ */
  2. /* These are required for correct profiling on SUNs */
  3.  
  4. /*
  5.     Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  6.     Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  7.  
  8.     This file is part of the ICE Library.
  9.  
  10.     The ICE Library is free software; you can redistribute it and/or
  11.     modify it under the terms of the GNU Library General Public
  12.     License as published by the Free Software Foundation; either
  13.     version 2 of the License, or (at your option) any later version.
  14.  
  15.     The ICE Library is distributed in the hope that it will be useful,
  16.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  18.     See the GNU Library General Public License for more details.
  19.  
  20.     You should have received a copy of the GNU Library General Public
  21.     License along with the ICE Library -- see the file COPYING.LIB.
  22.     If not, write to the Free Software Foundation, Inc.,
  23.     59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24.  
  25.     ICE is the incremental configuration environment.
  26.     For details, see the ICE World-Wide-Web page, 
  27.     `http://www.cs.tu-bs.de/softech/ice/',
  28.     or send a mail to the ICE developers <ice@ips.cs.tu-bs.de>.
  29. */
  30.  
  31. void *dlopen(path, mode)
  32.     char *path;
  33.     int mode;
  34.     return 0; 
  35. }
  36.  
  37. void *dlsym(handle, symbol)
  38.     void *handle;
  39.     char *symbol;
  40.     return 0; 
  41. }
  42.  
  43. int dlclose(handle)
  44.     void *handle;
  45.     return -1; 
  46. }
  47.