Ignore:
Timestamp:
Feb 16, 2014, 9:13:49 PM (11 years ago)
Author:
bird
Message:

s/const/const/g - just use the (now) standard 'const' everywhere in emx and kLIBC code. Avoid changing external code too much.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libc/include/umalloc.h

    r2207 r3808  
    7272extern Heap_t _um_regular_heap;
    7373
    74 Heap_t _mheap (__const__ void *);
     74Heap_t _mheap (const void *);
    7575Heap_t _uaddmem (Heap_t, void *, size_t, int);
    7676void *_ucalloc (Heap_t, size_t, size_t);
     
    9090int _uheapset (Heap_t, unsigned);
    9191unsigned _uheap_type (Heap_t);
    92 int _uheap_walk (Heap_t, int (*)(__const__ void *, size_t, int, int,
    93                                  __const__ char *, size_t));
    94 int _uheap_walk2 (Heap_t, int (*)(Heap_t, __const__ void *, size_t, int, int,
    95                                   __const__ char *, size_t, void *), void *);
     92int _uheap_walk (Heap_t, int (*)(const void *, size_t, int, int,
     93                                 const char *, size_t));
     94int _uheap_walk2 (Heap_t, int (*)(Heap_t, const void *, size_t, int, int,
     95                                  const char *, size_t, void *), void *);
    9696void *_umalloc (Heap_t, size_t);
    9797int _uopen (Heap_t);
Note: See TracChangeset for help on using the changeset viewer.