mylib.h
contents ::
  list_adt.c
  list.c
  list.h
  mylib.c
  mylib.h
  quick.c
  realloc_1.c
  realloc_2.c
  test.c
  Makefile

#ifndef MYLIB_H
#define MYLIB_H

#include <stdio.h>

extern void *emalloc(size_t s);
extern void *erealloc(void *p, size_t s);

#endif

James Little