annotate modules/fchdir @ 17476:6057744acd2c default tip master

autoupdate
author Karl Berry <karl@freefriends.org>
date Fri, 16 Aug 2013 06:32:22 -0700
parents 16f47458947e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7863
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Description:
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 fchdir() function: change current directory, given an open file descriptor.
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Files:
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 lib/fchdir.c
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 m4/fchdir.m4
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 Depends-on:
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 unistd
15746
60062069d7ed New module 'chdir'.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
10 chdir [test $HAVE_FCHDIR = 0]
14683
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
11 close [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
12 dirent [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
13 dirfd [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
14 dosname [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
15 dup2 [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
16 fcntl [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
17 fcntl-h [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
18 filenamecat-lgpl [test $HAVE_FCHDIR = 0]
15781
16f47458947e New module 'fstat'.
Bruno Haible <bruno@clisp.org>
parents: 15746
diff changeset
19 fstat [test $HAVE_FCHDIR = 0]
14683
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
20 getcwd-lgpl [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
21 malloc-posix [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
22 open [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
23 realloc-posix [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
24 stat [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
25 stdbool [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
26 strdup-posix [test $HAVE_FCHDIR = 0]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14673
diff changeset
27 sys_stat [test $HAVE_FCHDIR = 0]
7863
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 configure.ac:
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 gl_FUNC_FCHDIR
8199
51d32a83a7df Move more declarations into <unistd.h>.
Bruno Haible <bruno@clisp.org>
parents: 8197
diff changeset
31 gl_UNISTD_MODULE_INDICATOR([fchdir])
7863
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 Makefile.am:
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 Include:
12008
18ea6ab4e81d maint: make Include sections of modules consistent
Eric Blake <ebb9@byu.net>
parents: 11932
diff changeset
36 <unistd.h>
7863
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 License:
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 LGPL
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 Maintainer:
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42 Bruno Haible