blob: 215fe5735658a4b72f3256569669ea1a27f96074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifdef _SAMUS_H_
#error "samus.h must only be included once"
#endif
#define _SAMUS_H_
#ifndef _FITZ_H_
#error "fitz.h must be included before samus.h"
#endif
#include "samus/zip.h"
#include "samus/xml.h"
|