diff options
author | Joshua Bakita <jbakita@cs.unc.edu> | 2023-10-16 12:16:16 -0400 |
---|---|---|
committer | Joshua Bakita <jbakita@cs.unc.edu> | 2023-10-16 12:16:16 -0400 |
commit | 977f7eb86bb028f00b1b51c4f8c515087d37632b (patch) | |
tree | e4e74f69e133158d73336790143f0c5413f4a00a | |
parent | 6e552809ce6c3fc73ac3e95c8d971a972b842e4b (diff) |
Include stdint.h in libsmctrl.h
Necessary for declarations of included functions. Absence would
result in a compilation error for programs omitting this include.
-rw-r--r-- | libsmctrl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsmctrl.h b/libsmctrl.h index f144437..990d434 100644 --- a/libsmctrl.h +++ b/libsmctrl.h | |||
@@ -8,6 +8,8 @@ | |||
8 | extern "C" { | 8 | extern "C" { |
9 | #endif | 9 | #endif |
10 | 10 | ||
11 | #include <stdint.h> | ||
12 | |||
11 | /* PARTITIONING FUNCTIONS */ | 13 | /* PARTITIONING FUNCTIONS */ |
12 | 14 | ||
13 | // Set global default TPC mask for all kernels, incl. CUDA-internal ones | 15 | // Set global default TPC mask for all kernels, incl. CUDA-internal ones |