summaryrefslogtreecommitdiff
path: root/include/wordexp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/wordexp.h')
-rw-r--r--include/wordexp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/wordexp.h b/include/wordexp.h
index 1c40e6168..f270fd757 100644
--- a/include/wordexp.h
+++ b/include/wordexp.h
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _WORDEXP_H
#define _WORDEXP_H 1
@@ -60,11 +59,12 @@ enum
};
/* Do word expansion of WORDS into PWORDEXP. */
-extern int wordexp (__const char *__restrict __words,
+extern int wordexp (const char *__restrict __words,
wordexp_t *__restrict __pwordexp, int __flags);
/* Free the storage allocated by a `wordexp' call. */
extern void wordfree (wordexp_t *__wordexp) __THROW;
+libc_hidden_proto(wordfree)
__END_DECLS