StupidOS/bin/ld/ld.h
2025-01-31 11:51:12 +01:00

13 lines
183 B
C

#ifndef LD_H
# define LD_H
# include <stdio.h>
typedef struct {
} LDState;
int coff_output(LDState *state, FILE *fp);
int coff_load(LDState *state, FILE *fp);
#endif /* !LD_H */