comparison srogue/xcrypt.c @ 119:458df24e973d

srogue: use functions from mdport.c. Shell escape, passwd entries, terminal settings, and most signal handling is now done with the more portable md_* functions.
author John "Elwin" Edwards
date Wed, 30 Apr 2014 14:46:30 -0700
parents 2128c7dc8a40
children e6c8652473fe
comparison
equal deleted inserted replaced
118:8d1dfc5a912c 119:458df24e973d
49 * against crypt.o exportable or re-exportable from the USA. 49 * against crypt.o exportable or re-exportable from the USA.
50 */ 50 */
51 51
52 #include <sys/types.h> 52 #include <sys/types.h>
53 #include <sys/param.h> 53 #include <sys/param.h>
54 #include <pwd.h>
55 #include <string.h> 54 #include <string.h>
56 55
57 #ifdef DEBUG 56 #ifdef DEBUG
58 # include <stdio.h> 57 # include <stdio.h>
59 #endif 58 #endif