From: Paul Eggert Date: Mon, 17 Jul 2006 03:07:41 +0000 (+0000) Subject: (mode_adjust): New API. X-Git-Tag: v6.0~154 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86e8a6b15ec6daefcd928a2741190e989ccc1fcf;p=thirdparty%2Fcoreutils.git (mode_adjust): New API. --- diff --git a/lib/modechange.h b/lib/modechange.h index a94b33d4da..30a45943fa 100644 --- a/lib/modechange.h +++ b/lib/modechange.h @@ -1,7 +1,7 @@ /* modechange.h -- definitions for file mode manipulation - Copyright (C) 1989, 1990, 1997, 2003, 2004, 2005 Free Software - Foundation, Inc. + Copyright (C) 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free + Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,10 +22,12 @@ #if ! defined MODECHANGE_H_ # define MODECHANGE_H_ +# include # include struct mode_change *mode_compile (const char *); struct mode_change *mode_create_from_ref (const char *); -mode_t mode_adjust (mode_t, struct mode_change const *, mode_t); +mode_t mode_adjust (mode_t, bool, mode_t, struct mode_change const *, + mode_t *); #endif