malloc only yolo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
350 B

/*-------------------------*
<| .::. yolomalloc.h .::. |>
<| Dude, do you even swag? |>
*-------------------------*/
#ifndef YOLOMALLOC_H
#define YOLOMALLOC_H
#include <stddef.h>
/* Allocating dat memory like a boss */
void *yolomalloc(size_t size);
#ifdef I_AM_NOT_SWAG
/* Error 404: swag not found */
void yolofree(void *ptr);
#endif
#endif