mirror of
https://git.proxmox.com/git/mirror_smartmontools-debian
synced 2025-05-02 07:17:19 +00:00

Downloaded source from https://sourceforge.net/projects/smartmontools/files/smartmontools/7.0/ and imported here to git. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
23 lines
678 B
C
23 lines
678 B
C
/*
|
|
* 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_ */
|