You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
11 lines
128 B
C
11 lines
128 B
C
|
|
#ifndef _FIPS_H
|
||
|
|
#define _FIPS_H
|
||
|
|
|
||
|
|
#ifdef CONFIG_CRYPTO_FIPS
|
||
|
|
extern int fips_enabled;
|
||
|
|
#else
|
||
|
|
#define fips_enabled 0
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|