diff options
Diffstat (limited to 'sys/boot/ia64/common/copy.c')
-rw-r--r-- | sys/boot/ia64/common/copy.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/sys/boot/ia64/common/copy.c b/sys/boot/ia64/common/copy.c index ffecba6..01c31d8 100644 --- a/sys/boot/ia64/common/copy.c +++ b/sys/boot/ia64/common/copy.c @@ -22,9 +22,13 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ + +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif /* not lint */ + /* * MD primitives supporting placement of module data * @@ -39,21 +43,19 @@ int efi_copyin(void *src, vm_offset_t dest, size_t len) { - bcopy(src, (void*) dest, len); - return(len); + bcopy(src, (void*) dest, len); + return (len); } int efi_copyout(vm_offset_t src, void *dest, size_t len) { - bcopy((void*) src, dest, len); - return(len); + bcopy((void*) src, dest, len); + return (len); } int efi_readin(int fd, vm_offset_t dest, size_t len) { - return(read(fd, (void*) dest, len)); + return (read(fd, (void*) dest, len)); } - - |