blob: a53ff1411ab5a6e9c5e436df33c0601ffb7375ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef FINGERPRINT_H
#define FINGERPRINT_H
/* fp_get
*
* get a 32 bit host fingerprint hash build out of 'struct utsname' uname
* output
*
* return hash value
*/
unsigned int fp_get (void);
#endif
|