Subversion Repositories HelenOS-historic

Rev

Rev 1528 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1528 Rev 1653
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup libc
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef __libc_STREAM_H_
35
#ifndef __libc_STREAM_H_
30
#define __libc_STREAM_H_
36
#define __libc_STREAM_H_
31
 
37
 
32
#include <libarch/types.h>
38
#include <libarch/types.h>
33
 
39
 
Line 41... Line 47...
41
 
47
 
42
fd_t open(const char *fname, int flags);
48
fd_t open(const char *fname, int flags);
43
int get_fd_phone(int fd);
49
int get_fd_phone(int fd);
44
 
50
 
45
#endif
51
#endif
-
 
52
 
-
 
53
 
-
 
54
 /** @}
-
 
55
 */
-
 
56
 
-
 
57