hc
2024-08-15 77e89012189e2b1c68eace320794579f45b94136
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
 * All Rights Reserved.
 */
#ifndef __XFS_H__
#define __XFS_H__
 
#ifdef CONFIG_XFS_DEBUG
#define DEBUG 1
#endif
 
#ifdef CONFIG_XFS_ASSERT_FATAL
#define XFS_ASSERT_FATAL 1
#endif
 
#ifdef CONFIG_XFS_WARN
#define XFS_WARN 1
#endif
 
 
#include "xfs_linux.h"
 
#endif    /* __XFS_H__ */