Rewrite Include Paths to be Relative

Addresses #1998.
This commit is contained in:
W. Felix Handte
2020-05-04 15:20:26 -04:00
parent 0301ef5d04
commit 6028827fee
40 changed files with 100 additions and 99 deletions
+3 -3
View File
@@ -18,9 +18,9 @@ extern "C" {
/* *************************************
* Includes
***************************************/
#include "mem.h" /* MEM_STATIC */
#include "error_private.h" /* ERROR */
#include "zstd_internal.h" /* ZSTD_inBuffer, ZSTD_outBuffer, ZSTD_frameSizeInfo */
#include "../common/mem.h" /* MEM_STATIC */
#include "../common/error_private.h" /* ERROR */
#include "../common/zstd_internal.h" /* ZSTD_inBuffer, ZSTD_outBuffer, ZSTD_frameSizeInfo */
#if !defined (ZSTD_LEGACY_SUPPORT) || (ZSTD_LEGACY_SUPPORT == 0)
# undef ZSTD_LEGACY_SUPPORT
+1 -1
View File
@@ -14,7 +14,7 @@
******************************************/
#include <stddef.h> /* size_t, ptrdiff_t */
#include "zstd_v01.h"
#include "error_private.h"
#include "../common/error_private.h"
/******************************************
+1 -1
View File
@@ -11,7 +11,7 @@
#include <stddef.h> /* size_t, ptrdiff_t */
#include "zstd_v02.h"
#include "error_private.h"
#include "../common/error_private.h"
/******************************************
+1 -1
View File
@@ -11,7 +11,7 @@
#include <stddef.h> /* size_t, ptrdiff_t */
#include "zstd_v03.h"
#include "error_private.h"
#include "../common/error_private.h"
/******************************************
+1 -1
View File
@@ -16,7 +16,7 @@
#include <string.h> /* memcpy */
#include "zstd_v04.h"
#include "error_private.h"
#include "../common/error_private.h"
/* ******************************************************************
+1 -1
View File
@@ -11,7 +11,7 @@
/*- Dependencies -*/
#include "zstd_v05.h"
#include "error_private.h"
#include "../common/error_private.h"
/* ******************************************************************
+1 -1
View File
@@ -19,7 +19,7 @@ extern "C" {
* Dependencies
***************************************/
#include <stddef.h> /* size_t */
#include "mem.h" /* U64, U32 */
#include "../common/mem.h" /* U64, U32 */
/* *************************************
+1 -1
View File
@@ -14,7 +14,7 @@
#include <stddef.h> /* size_t, ptrdiff_t */
#include <string.h> /* memcpy */
#include <stdlib.h> /* malloc, free, qsort */
#include "error_private.h"
#include "../common/error_private.h"
+2 -2
View File
@@ -17,14 +17,14 @@
#ifndef XXH_STATIC_LINKING_ONLY
# define XXH_STATIC_LINKING_ONLY /* XXH64_state_t */
#endif
#include "xxhash.h" /* XXH64_* */
#include "../common/xxhash.h" /* XXH64_* */
#include "zstd_v07.h"
#define FSEv07_STATIC_LINKING_ONLY /* FSEv07_MIN_TABLELOG */
#define HUFv07_STATIC_LINKING_ONLY /* HUFv07_TABLELOG_ABSOLUTEMAX */
#define ZSTDv07_STATIC_LINKING_ONLY
#include "error_private.h"
#include "../common/error_private.h"
#ifdef ZSTDv07_STATIC_LINKING_ONLY