URI: 
       tAdd missing include for stdint.h - ltk - Socket-based GUI for X11 (WIP)
  HTML git clone git://lumidify.org/ltk.git (fast, but not encrypted)
  HTML git clone https://lumidify.org/git/ltk.git (encrypted, but very slow)
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 5295095706d12ad5306360f812a51d46f023c86e
   DIR parent d02e1da3846868b392d6af9451d160c0fc07b2eb
  HTML Author: lumidify <nobody@lumidify.org>
       Date:   Mon, 26 Apr 2021 18:37:45 +0200
       
       Add missing include for stdint.h
       
       Thanks __20h__ for reporting.
       
       Diffstat:
         M src/ltk.h                           |       2 ++
         M src/widget.c                        |       1 +
       
       2 files changed, 3 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/src/ltk.h b/src/ltk.h
       t@@ -19,6 +19,8 @@
        
        /* Requires the following includes: <X11/Xlib.h>, <X11/Xutil.h>, "widget.h" */
        
       +#include <stdint.h>
       +
        typedef enum {
                LTK_EVENT_RESIZE = 1 << 0,
                LTK_EVENT_BUTTON = 1 << 1,
   DIR diff --git a/src/widget.c b/src/widget.c
       t@@ -1,3 +1,4 @@
       +/* FIXME: Destroy function for widget to destroy pixmap! */
        /*
         * Copyright (c) 2021 lumidify <nobody@lumidify.org>
         *