/usr/include/dpm/u64subr.h is in libdpm-dev 1.8.7-3.1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | /*
* Copyright (C) 1999-2011 by CERN/IT/PDP/DM
* All rights reserved
*/
/*
* @(#)$RCSfile: u64subr.h,v $ $Revision: 4235 $ $Date: 2011-04-04 08:49:00 +0200 (Mon, 04 Apr 2011) $ CERN/IT/PDP/DM Jean-Philippe Baud
*/
#ifndef __u64subr_h
#define __u64subr_h
#include "osdep.h"
EXTERN_C HYPER DLL_DECL strtoi64 _PROTO((CONST char *));
EXTERN_C char * DLL_DECL i64tostr _PROTO((HYPER, char *, int));
EXTERN_C U_HYPER DLL_DECL strtou64 _PROTO((CONST char *));
EXTERN_C char * DLL_DECL u64tostr _PROTO((U_HYPER, char *, int));
EXTERN_C U_HYPER DLL_DECL strutou64 _PROTO((CONST char *));
EXTERN_C char * DLL_DECL u64tostru _PROTO((U_HYPER, char *, int));
EXTERN_C U_HYPER DLL_DECL strsitou64 _PROTO((CONST char *));
EXTERN_C char * DLL_DECL u64tostrsi _PROTO((U_HYPER, char *, int));
#endif /* __u64subr_h */
|