Configuration file for DWM on MacBook Air
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
278 B

  1. /* See LICENSE file for copyright and license details. */
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include "util.h"
  6. void
  7. die(const char *errstr, ...) {
  8. va_list ap;
  9. va_start(ap, errstr);
  10. vfprintf(stderr, errstr, ap);
  11. va_end(ap);
  12. exit(EXIT_FAILURE);
  13. }