diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-16 23:55:16 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-17 19:03:39 +0100 |
commit | cea1f71ee21451d89cddeff04d8145697a5deab8 (patch) | |
tree | 081fcff45f5e6532e969eeac2aeaf5353ee93737 /util/atoi.h | |
parent | 827c01fadb98e77f692d39d0fb34a1944e43c99b (diff) | |
download | gnumach-cea1f71ee21451d89cddeff04d8145697a5deab8.tar.gz gnumach-cea1f71ee21451d89cddeff04d8145697a5deab8.tar.bz2 gnumach-cea1f71ee21451d89cddeff04d8145697a5deab8.zip |
util: qualify pointers whose dereferenced values are constant with const
Diffstat (limited to 'util/atoi.h')
-rw-r--r-- | util/atoi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/atoi.h b/util/atoi.h index 921b1e81..47adb42e 100644 --- a/util/atoi.h +++ b/util/atoi.h @@ -62,6 +62,6 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <sys/types.h> #define MACH_ATOI_DEFAULT -1 -extern int mach_atoi (u_char *, int *); +extern int mach_atoi (const u_char *, int *); #endif /* _UTIL_ATOI_H_ */ |