-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmalloc.h
More file actions
24 lines (20 loc) · 1.09 KB
/
malloc.h
File metadata and controls
24 lines (20 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* malloc.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abombard <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/10/31 11:14:18 by abombard #+# #+# */
/* Updated: 2016/10/31 12:46:39 by abombard ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MALLOC_H
# define MALLOC_H
# include <unistd.h>
void fee(void *pt);
void *malloc(size_t size);
void *ealloc(void *pt, size_t size);
void show_memory(void);
void *calloc(size_t nmemb, size_t size);
#endif