blob: 41647935f4379f1fce63e74a0d833c95d2ca590c (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef __DEBUGMEM_H
#define __DEBUGMEM_H
// kevinh quick hack to see if the s3c stuff is doing memory properly
void debug_alloc(void *addr);
void debug_free(void *addr);
#endif
|