shithub: scc

ref: f53e048d3a57eeee135e2d8aa3cd72b7f3dc2711
dir: /src/libmach/elf64/elf64new.c/

View raw version
#include <stdio.h>
#include <stdlib.h>

#include <scc/mach.h>

#include "../libmach.h"
#include "elf64.h"

int
elf64new(Obj *obj)
{
	struct elf64 *elf;

	if ((elf = calloc(1, sizeof(*elf))) == NULL)
		return -1;
	obj->data = elf;
	obj->index = "/";
	return 0;
}