shithub: mc

ref: ddf0bd7ed1851d8c06ed327dd3b20b9895d0b0dd
dir: /parse/use.c/

View raw version
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <ctype.h>
#include <string.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

#include "parse.h"

void readuse(Node *use, Stab *st)
{
    die("Unimplmented use loading");
}

void writeuse(Node *file, FILE *out)
{
    die("Unimplemented use writing");
}