Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/utils/malloc32.h

    rd4d74dc r0d4b110  
    3535#define DRV_OHCI_UTILS_MALLOC32_H
    3636
    37 #include <assert.h>
    38 #include <malloc.h>
    39 #include <unistd.h>
     37#include <as.h>
    4038#include <errno.h>
    41 #include <mem.h>
    42 #include <as.h>
     39#include <stdlib.h>
     40#include <sys/types.h>
    4341
    4442/* Generic TDs and EDs require 16byte alignment,
     
    6361        return result;
    6462}
    65 /*----------------------------------------------------------------------------*/
     63
    6664/** Physical mallocator simulator
    6765 *
     
    7169static inline void * malloc32(size_t size)
    7270        { return memalign(OHCI_ALIGN, size); }
    73 /*----------------------------------------------------------------------------*/
     71
    7472/** Physical mallocator simulator
    7573 *
Note: See TracChangeset for help on using the changeset viewer.