ansilove

ANSI and ASCII art to PNG converter in C
Log | Files | Refs | README | LICENSE

pledge.c (112B)


      1 int
      2 pledge(const char *promises, const char *execpromises)
      3 {
      4 	(void)promises;
      5 	(void)execpromises;
      6 	return 0;
      7 }