URI: 
       eprintf.h - blind - suckless command-line video editing utility
  HTML git clone git://git.suckless.org/blind
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       eprintf.h (244B)
       ---
            1 /* See LICENSE file for copyright and license details. */
            2 #include <stdlib.h>
            3 
            4 void weprintf(const char *fmt, ...);
            5 
            6 #define eprintf(...)\
            7         (weprintf(__VA_ARGS__), exit(1))
            8 
            9 #define enprintf(status, ...)\
           10         (weprintf(__VA_ARGS__), exit(status))