summaryrefslogtreecommitdiff
path: root/src/elf.h
blob: 8f98056ed4a513ee16db6e0686e7b326f81d2327 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef ELF_H
#define ELF_H

#include <stdint.h>

struct Elf {
	uint8_t magic;
	
};

#endif