Ignore:
File:
1 edited

Legend:

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

    r0d4b110 rd4d74dc  
    3535#define DRV_OHCI_UTILS_MALLOC32_H
    3636
     37#include <assert.h>
     38#include <malloc.h>
     39#include <unistd.h>
     40#include <errno.h>
     41#include <mem.h>
    3742#include <as.h>
    38 #include <errno.h>
    39 #include <stdlib.h>
    40 #include <sys/types.h>
    4143
    4244/* Generic TDs and EDs require 16byte alignment,
     
    6163        return result;
    6264}
    63 
     65/*----------------------------------------------------------------------------*/
    6466/** Physical mallocator simulator
    6567 *
     
    6971static inline void * malloc32(size_t size)
    7072        { return memalign(OHCI_ALIGN, size); }
    71 
     73/*----------------------------------------------------------------------------*/
    7274/** Physical mallocator simulator
    7375 *
Note: See TracChangeset for help on using the changeset viewer.