blob: efca18b55843a5ac451c1b1d4ef450dbde9957e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* This source code is released into the public domain.
*/
#ifndef LFJAIL_GENERATOR_HH
#define LFJAIL_GENERATOR_HH
#if __has_include(<generator>)
# include <generator>
#else
# include "__generator.hh"
#endif
#endif // !LFJAIL_GENERATOR_HH
|