X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e92ee12893ca6320f5331384b2c2e8560ca9c88a..7a24c346b07d672c3d95bb44f16a0133f5197e3d:/io.c diff --git a/io.c b/io.c index 2f4162cd..253344b0 100644 --- a/io.c +++ b/io.c @@ -1,5 +1,6 @@ -/* - Copyright (C) Andrew Tridgell 1996 +/* -*- c-file-style: "linux" -*- + + Copyright (C) 1996-2000 by Andrew Tridgell Copyright (C) Paul Mackerras 1996 This program is free software; you can redistribute it and/or modify @@ -455,6 +456,8 @@ void io_flush(void) io_buffer_count = 0; } + +/* XXX: fd is ignored, which seems a little strange. */ void io_end_buffering(int fd) { io_flush(); @@ -505,6 +508,11 @@ void write_int(int f,int32 x) writefd(f,b,4); } + +/* + * Note: int64 may actually be a 32-bit type if ./configure couldn't find any + * 64-bit types on this platform. + */ void write_longint(int f, int64 x) { extern int remote_version;