dwm

Kris's build of dwm
git clone git clone https://git.krisyotam.com/krisyotam/dwm.git
Log | Files | Refs | README | LICENSE

fsignal.h (125B)


      1 typedef struct {
      2 	unsigned int signum;
      3 	void (*func)(const Arg *);
      4 	const Arg arg;
      5 } Signal;
      6 
      7 static int fake_signal(void);
      8