diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-04-10 13:26:05 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-04-10 13:26:05 +0000 |
| commit | 5a709d61a37133c04bc540b7c531c49239e71145 (patch) | |
| tree | c966d82948d199cb6fbe3ebf72b2838dcc15da99 /common/util.c | |
| parent | 1abe484249caf1c5e462ce3110c8db09c059c6e8 (diff) | |
Diffstat (limited to 'common/util.c')
| -rw-r--r-- | common/util.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/common/util.c b/common/util.c index 43fa9d1e9f205..44c8e29482e67 100644 --- a/common/util.c +++ b/common/util.c @@ -39,7 +39,7 @@ static const char sccsid[] = "$Id: util.c,v 10.30 2013/03/19 10:00:27 yamt Exp $ * binc -- * Increase the size of a buffer. * - * PUBLIC: void *binc __P((SCR *, void *, size_t *, size_t)); + * PUBLIC: void *binc(SCR *, void *, size_t *, size_t); */ void * binc( @@ -76,7 +76,7 @@ binc( * including or after the starting column. On error, set * the column to 0, it's safest. * - * PUBLIC: int nonblank __P((SCR *, recno_t, size_t *)); + * PUBLIC: int nonblank(SCR *, recno_t, size_t *); */ int nonblank( @@ -112,7 +112,7 @@ nonblank( * tail -- * Return tail of a path. * - * PUBLIC: char *tail __P((char *)); + * PUBLIC: char *tail(char *); */ char * tail(char *path) @@ -128,12 +128,12 @@ tail(char *path) * join -- * Join two paths; need free. * - * PUBLIC: char *join __P((char *, char *)); + * PUBLIC: char *join(char *, char *); */ char * join( - char *path1, - char *path2) + char *path1, + char *path2) { char *p; @@ -148,7 +148,7 @@ join( * expanduser -- * Return a "~" or "~user" expanded path; need free. * - * PUBLIC: char *expanduser __P((char *)); + * PUBLIC: char *expanduser(char *); */ char * expanduser(char *str) @@ -198,7 +198,7 @@ expanduser(char *str) * quote -- * Return a escaped string for /bin/sh; need free. * - * PUBLIC: char *quote __P((char *)); + * PUBLIC: char *quote(char *); */ char * quote(char *str) @@ -245,7 +245,7 @@ quote(char *str) * v_strdup -- * Strdup for 8-bit character strings with an associated length. * - * PUBLIC: char *v_strdup __P((SCR *, const char *, size_t)); + * PUBLIC: char *v_strdup(SCR *, const char *, size_t); */ char * v_strdup( @@ -267,7 +267,7 @@ v_strdup( * v_wstrdup -- * Strdup for wide character strings with an associated length. * - * PUBLIC: CHAR_T *v_wstrdup __P((SCR *, const CHAR_T *, size_t)); + * PUBLIC: CHAR_T *v_wstrdup(SCR *, const CHAR_T *, size_t); */ CHAR_T * v_wstrdup(SCR *sp, @@ -288,7 +288,7 @@ v_wstrdup(SCR *sp, * nget_uslong -- * Get an unsigned long, checking for overflow. * - * PUBLIC: enum nresult nget_uslong __P((u_long *, const CHAR_T *, CHAR_T **, int)); + * PUBLIC: enum nresult nget_uslong(u_long *, const CHAR_T *, CHAR_T **, int); */ enum nresult nget_uslong( @@ -310,7 +310,7 @@ nget_uslong( * nget_slong -- * Convert a signed long, checking for overflow and underflow. * - * PUBLIC: enum nresult nget_slong __P((long *, const CHAR_T *, CHAR_T **, int)); + * PUBLIC: enum nresult nget_slong(long *, const CHAR_T *, CHAR_T **, int); */ enum nresult nget_slong( @@ -336,7 +336,7 @@ nget_slong( * timepoint_steady -- * Get a timestamp from a monotonic clock. * - * PUBLIC: void timepoint_steady __P((struct timespec *)); + * PUBLIC: void timepoint_steady(struct timespec *); */ void timepoint_steady( @@ -367,7 +367,7 @@ timepoint_steady( * timepoint_system -- * Get the current calendar time. * - * PUBLIC: void timepoint_system __P((struct timespec *)); + * PUBLIC: void timepoint_system(struct timespec *); */ void timepoint_system( @@ -401,7 +401,7 @@ timepoint_system( * TRACE -- * debugging trace routine. * - * PUBLIC: void TRACE __P((SCR *, const char *, ...)); + * PUBLIC: void TRACE(SCR *, const char *, ...); */ void TRACE( |
