/[pupa]/pupa/util/misc.c
ViewVC logotype

Diff of /pupa/util/misc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by marco_g, Wed Nov 12 20:33:52 2003 UTC revision 1.5 by marco_g, Mon Nov 17 18:07:08 2003 UTC
# Line 189  pupa_realloc (void *ptr, unsigned size) Line 189  pupa_realloc (void *ptr, unsigned size)
189    return realloc (ptr, size);    return realloc (ptr, size);
190  }  }
191    
192    void *
193    pupa_memalign (pupa_size_t align, pupa_size_t size)
194    {
195      return memalign (align, size);
196    }
197    
198    /* Some functions that we don't use.  */
199  void  void
200  pupa_stop (void)  pupa_mm_init_region (void *addr, pupa_size_t size)
201  {  {
   exit (1);  
202  }  }
203    
204  void  void
205  pupa_putchar (int c)  pupa_register_exported_symbols (void)
206  {  {
207    putchar (c);  }
208    
209    void
210    pupa_stop (void)
211    {
212      exit (1);
213  }  }
214    
215  pupa_uint32_t  pupa_uint32_t

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26