You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
660 B

  1. From 811f5c0b0a226edfbf5aa2f316e083f30ec3cd8d Mon Sep 17 00:00:00 2001
  2. From: Yousong Zhou <yszhou4tech@gmail.com>
  3. Date: Tue, 18 Aug 2015 14:34:26 +0800
  4. Subject: [PATCH] Include <sys/types.h> for definition of u_char.
  5. Fixes build with musl-libc.
  6. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
  7. ---
  8. src/libwps/libwps.h | 1 +
  9. 1 file changed, 1 insertion(+)
  10. diff --git a/src/libwps/libwps.h b/src/libwps/libwps.h
  11. index b04dd8b..bdd7b9a 100755
  12. --- a/src/libwps/libwps.h
  13. +++ b/src/libwps/libwps.h
  14. @@ -17,6 +17,7 @@
  15. #include <stdio.h>
  16. #include <string.h>
  17. #include <arpa/inet.h>
  18. +#include <sys/types.h>
  19. #define LIBWPS_MAX_STR_LEN 256
  20. --
  21. 1.7.10.4