v2 / vlib / v / gen / c / testdata / os_specific_hash_stmts.c.must_have
12 lines · 12 sloc · 200 bytes · bcfc16a34d40d3cf03fb2331c789cac8aca88353
Raw
1#if defined(__linux__)
2#include <pty.h>
3#endif
4#if defined(__DARWIN__)
5#include <util.h>
6#endif
7#if defined(_WIN32)
8#include "win_header.h"
9#endif
10#if defined(__FreeBSD__)
11#include <libutil.h>
12#endif
13