git: 9front

Download patch

ref: 70bc887d617021b9b54d74d8698c3a97ad545416
parent: 2674c3c2652cd18a1d835dcd6170404642256963
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Tue Apr 12 21:06:34 EDT 2016

libc: remove unneeded #include <auth.h> for crypt() and netcrypt()

--- a/sys/src/libc/port/crypt.c
+++ b/sys/src/libc/port/crypt.c
@@ -9,7 +9,6 @@
  */
 #include <u.h>
 #include <libc.h>
-#include <auth.h>
 #include <libsec.h>
 
 /*
--- a/sys/src/libc/port/netcrypt.c
+++ b/sys/src/libc/port/netcrypt.c
@@ -1,6 +1,5 @@
 #include <u.h>
 #include <libc.h>
-#include <auth.h>
 
 int
 netcrypt(void *key, void *chal)
--