Differences From Artifact [9bb8a09cb3]:
- File mkpw.c — part of check-in [c2ffe127f3] at 2019-08-15 08:34:03 on branch trunk — updates (user: lexi, size: 6530) [annotate] [blame] [check-ins using]
To Artifact [6aa024ebe0]:
- File mkpw.c — part of check-in [6bda93a905] at 2023-01-29 19:21:56 on branch trunk — add rasuir spec, other updates (user: lexi, size: 6556) [annotate] [blame] [check-ins using]
22 22 #include <sys/random.h> 23 23 #include <sys/syscall.h> 24 24 #include <stddef.h> 25 25 #include <stdint.h> 26 26 #include <string.h> 27 27 #define sz(a) ( sizeof (a) / sizeof (a) [0] ) 28 28 #define say(x) (write(2, (x), sizeof (x))) 29 + 30 +long syscall(long, ...); 29 31 30 32 #ifdef _CLIPBOARD 31 33 # include <sys/types.h> 32 34 # include <pwd.h> 33 35 # include <stdlib.h> 34 36 # define _cl_opt o('n',nocopy,copy = false) 35 37 #else