aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Bakita <jbakita@cs.unc.edu>2023-10-16 12:16:16 -0400
committerJoshua Bakita <jbakita@cs.unc.edu>2023-10-16 12:16:16 -0400
commit977f7eb86bb028f00b1b51c4f8c515087d37632b (patch)
treee4e74f69e133158d73336790143f0c5413f4a00a
parent6e552809ce6c3fc73ac3e95c8d971a972b842e4b (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.h2
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 @@
8extern "C" { 8extern "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