Ignore:
Timestamp:
Apr 18, 2011, 3:03:52 PM (12 years ago)
Author:
Sam Hocevar
Message:

lisp: always align the lisp allocator results, even on x86 or architectures
that have hardware realignment. Get rid of now useless bus_type.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • abuse/trunk/src/lisp/lisp.h

    r501 r504  
    218218void *eval_block(void *list);
    219219void *assoc(void *item, void *list);
    220 void resize_tmp(int new_size);
    221 void resize_perm(int new_size);
     220void resize_tmp(size_t new_size);
     221void resize_perm(size_t new_size);
    222222
    223223void push_onto_list(void *object, void *&list);
     
    244244
    245245extern uint8_t *space[4], *free_space[4];
    246 extern int space_size[4];
     246extern size_t space_size[4];
    247247void *nth(int num, void *list);
    248248int32_t lisp_atan2(int32_t dy, int32_t dx);
Note: See TracChangeset for help on using the changeset viewer.