Files
CMake/Tests/IncludeDirectories/SystemIncludeDirectories/upstream.h
Brad King b094324948 Tests/IncludeDirectories: Include system headers via angle brackets
This is typically how projects include them, and cl's `-external:{I,W}`
flags suppress warnings only when included through angle brackets.
2021-06-17 14:02:52 -04:00

13 lines
133 B
C

#ifndef UPSTREAM_H
#define UPSTREAM_H
#include <systemlib.h>
#ifdef _WIN32
__declspec(dllexport)
#endif
int upstream();
#endif