From: Wayne Davison Date: Thu, 1 Jan 2004 21:10:50 +0000 (+0000) Subject: Allow function return values to start with "const". X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/de0551020b1c82321a2665bfa426c3db868afbd0 Allow function return values to start with "const". --- diff --git a/mkproto.awk b/mkproto.awk index 6af5dfc3..ec949c67 100644 --- a/mkproto.awk +++ b/mkproto.awk @@ -58,7 +58,7 @@ BEGIN { next; } -!/^OFF_T|^size_t|^off_t|^pid_t|^unsigned|^mode_t|^DIR|^user|^int|^char|^uint|^struct|^BOOL|^void|^time/ { +!/^OFF_T|^size_t|^off_t|^pid_t|^unsigned|^mode_t|^DIR|^user|^int|^char|^uint|^struct|^BOOL|^void|^time|^const/ { next; }