diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:14:45 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:14:45 +0000 |
commit | 43e8530e93493bb978c446a2023134bdd4277e50 (patch) | |
tree | e8c0d3c0c394b17381f48fb2d288f166b4f22440 /os_generic.h | |
parent | Initial commit. (diff) | |
download | smartmontools-43e8530e93493bb978c446a2023134bdd4277e50.tar.xz smartmontools-43e8530e93493bb978c446a2023134bdd4277e50.zip |
Adding upstream version 7.4.upstream/7.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | os_generic.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/os_generic.h b/os_generic.h new file mode 100644 index 0000000..c7f1ac6 --- /dev/null +++ b/os_generic.h @@ -0,0 +1,22 @@ +/* + * os_generic.h + * + * Home page of code is: http://www.smartmontools.org + * + * Copyright (C) YEAR YOUR_NAME + * Copyright (C) 2003-8 Bruce Allen + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +// In the three following lines, change 'GENERIC' to your OS name +#ifndef OS_GENERIC_H_ +#define OS_GENERIC_H_ +#define OS_GENERIC_H_CVSID "$Id: os_generic.h 4760 2018-08-19 18:45:53Z chrfranke $\n" + +// Additional material should start here. Note: to keep the '-V' CVS +// reporting option working as intended, you should only #include +// system include files <something.h>. Local #include files +// <"something.h"> should be #included in os_generic.c + +#endif /* OS_GENERIC_H_ */ |