config.c (4cb3c6d546aa5493a960d05eb73bad8e69a58574) | config.c (f2a39fe84901df2b3d1bec3459b65cee3e8db57c) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * config.c 4 * 5 * Helper functions for parsing config items. 6 * Originally copied from GIT source. 7 * 8 * Copyright (C) Linus Torvalds, 2005 --- 9 unchanged lines hidden (view full) --- 18#include "util/hist.h" /* perf_hist_config */ 19#include "util/llvm-utils.h" /* perf_llvm_config */ 20#include "build-id.h" 21#include "debug.h" 22#include "config.h" 23#include "debug.h" 24#include <sys/types.h> 25#include <sys/stat.h> | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * config.c 4 * 5 * Helper functions for parsing config items. 6 * Originally copied from GIT source. 7 * 8 * Copyright (C) Linus Torvalds, 2005 --- 9 unchanged lines hidden (view full) --- 18#include "util/hist.h" /* perf_hist_config */ 19#include "util/llvm-utils.h" /* perf_llvm_config */ 20#include "build-id.h" 21#include "debug.h" 22#include "config.h" 23#include "debug.h" 24#include <sys/types.h> 25#include <sys/stat.h> |
26#include <stdlib.h> |
|
26#include <unistd.h> 27#include <linux/string.h> 28#include <linux/zalloc.h> 29#include <linux/ctype.h> 30 31#define MAXNAME (256) 32 33#define DEBUG_CACHE_DIR ".debug" --- 807 unchanged lines hidden --- | 27#include <unistd.h> 28#include <linux/string.h> 29#include <linux/zalloc.h> 30#include <linux/ctype.h> 31 32#define MAXNAME (256) 33 34#define DEBUG_CACHE_DIR ".debug" --- 807 unchanged lines hidden --- |