changeset 950:956336e508e2

types.h: define the bool type and the true/false value Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Wed, 08 Jan 2020 15:17:01 -0500
parents bf96a13700e5
children a2d5dca1f525
files include/jeffpc/types.h
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/include/jeffpc/types.h	Sun Oct 27 20:56:19 2019 -0400
+++ b/include/jeffpc/types.h	Wed Jan 08 15:17:01 2020 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016-2017 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2016-2020 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
@@ -23,6 +23,8 @@
 #ifndef __JEFFPC_TYPES_H
 #define __JEFFPC_TYPES_H
 
+#include <stdbool.h>
+
 #include <jeffpc/int.h>
 
 #ifndef MIN