Where is the stdint.h library

I have been searching for the stdint.h library for a project that I am doing, however I cannot find it. Here is the error code for which I need the stdint.h library for:

#if USE_LOCAL_KBV
#include "touchscreen_kbv.h"         //my hacked version        
#define TouchScreen TouchScreen_kbv
#define TSPoint     TSPoint_kbv
#else
#include <TouchScreen.h>

how can stdint.h help with that piece of code ?

and if you need it, just add

#include <stdint.h>

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.