summaryrefslogtreecommitdiff
path: root/Ada95/src/c_threaded_variables.h
diff options
context:
space:
mode:
Diffstat (limited to 'Ada95/src/c_threaded_variables.h')
-rw-r--r--Ada95/src/c_threaded_variables.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/Ada95/src/c_threaded_variables.h b/Ada95/src/c_threaded_variables.h
index eac3e1b..e27ff7c 100644
--- a/Ada95/src/c_threaded_variables.h
+++ b/Ada95/src/c_threaded_variables.h
@@ -1,5 +1,6 @@
/****************************************************************************
- * Copyright (c) 2011,2014 Free Software Foundation, Inc. *
+ * Copyright 2020 Thomas E. Dickey *
+ * Copyright 2014,2015 Free Software Foundation, Inc. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the *
@@ -26,9 +27,21 @@
* authorization. *
****************************************************************************/
+/* $Id: c_threaded_variables.h,v 1.4 2020/02/02 23:34:34 tom Exp $ */
+
#ifndef __C_THREADED_VARIABLES_H
#define __C_THREADED_VARIABLES_H
+#include <ncurses_cfg.h>
+
+#if HAVE_INTTYPES_H
+# include <inttypes.h>
+#else
+# if HAVE_STDINT_H
+# include <stdint.h>
+# endif
+#endif
+
#include <curses.h>
extern WINDOW *stdscr_as_function(void);