Commit 16e32d31 by Aaron Leung

Stubs for basic utilities that I'll need.

parent 03ccb459
#include <stdlib.h>
#include "array.c"
typedef struct {
size_t length;
void *contents;
} array;
array make_array(size_t);
void free_array(array);
#include <stdlib.h>
#include <stdio.h>
#include "exceptions.h"
raise(int code) {
printf("Aborted with error code %d.", code);
abort();
}
\ No newline at end of file
raise(int);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment