My build of dmenu from suckless.org.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

util.c 517 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* See LICENSE file for copyright and license details. */
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include "util.h"
  7. void *
  8. ecalloc(size_t nmemb, size_t size)
  9. {
  10. void *p;
  11. if (!(p = calloc(nmemb, size)))
  12. die("calloc:");
  13. return p;
  14. }
  15. void
  16. die(const char *fmt, ...) {
  17. va_list ap;
  18. va_start(ap, fmt);
  19. vfprintf(stderr, fmt, ap);
  20. va_end(ap);
  21. if (fmt[0] && fmt[strlen(fmt)-1] == ':') {
  22. fputc(' ', stderr);
  23. perror(NULL);
  24. } else {
  25. fputc('\n', stderr);
  26. }
  27. exit(1);
  28. }