Sign in

xiemeng / Optek_sdk_131 · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • Optek_sdk_131
  • source
  • common
  • malloc.h
  • Initial code
    7e937523
    luozhesi authored
    2021-05-12 09:32:43 +0800  
    Browse Files »
malloc.h 177 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef _MALLOC_H
#define _MALLOC_H

void malloc_init(void);
void *otk_malloc(U32 size);
void otk_free(void *ptr);

void malloc_test (void);
void malloc_check (void);


#endif