From 30c794083f5211ecf82f5c3614f35a16a7e4d354 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Thu, 21 Jan 2010 14:34:55 +0100 Subject: Make setprogname and getprogname arguments and return value const This is more correct as the strings are not going to be changed, and it matches the function signatures on other BSDs. Suggested-by: Aurelien Jarno --- include/bsd/stdlib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/bsd') diff --git a/include/bsd/stdlib.h b/include/bsd/stdlib.h index cec5a28..6e7a88c 100644 --- a/include/bsd/stdlib.h +++ b/include/bsd/stdlib.h @@ -1,7 +1,7 @@ /* * Copyright © 2005 Aurelien Jarno * Copyright © 2006 Robert Millan - * Copyright © 2008, 2009 Guillem Jover + * Copyright © 2008, 2009, 2010 Guillem Jover * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -48,8 +48,8 @@ void arc4random_addrandom(u_char *dat, int datlen); int dehumanize_number(const char *str, int64_t *size); -char *getprogname (); -void setprogname (char *); +const char *getprogname(void); +void setprogname(const char *); int heapsort (void *, size_t, size_t, int (*)(const void *, const void *)); -- cgit v1.2.3