From ad343eccb18454bab2f4e9464b88564c9da69649 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 2 Nov 2014 20:10:32 +0000 Subject: remove unecessary utils/types.h This cleans up this header and moves the functionality into more useful places while reducing the include complexity but only pulling in whats required. --- utils/utils.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'utils/utils.h') diff --git a/utils/utils.h b/utils/utils.h index 00d150126..e2865d738 100644 --- a/utils/utils.h +++ b/utils/utils.h @@ -38,6 +38,12 @@ #include "utils/errors.h" +/* Rectangle coordinates */ +struct rect { + int x0, y0; /* Top left */ + int x1, y1; /* Bottom right */ +}; + struct dirent; #ifndef NOF_ELEMENTS -- cgit v1.2.3