home *** CD-ROM | disk | FTP | other *** search
- /*
- * linux/lib/bcopy.c
- * Copyright (C) 1991, 1992 Free Software Foundation, Inc.
- *
- * This software is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public License as
- * published by the Free Software Foundation; either version 2 of the
- * License, or (at your option) any later version.
- */
-
- #include <linux/types.h>
- #include <linux/string.h>
-
- void bcopy (const void *src, void *dest, size_t n)
- {
- memcpy (dest, src, n);
- }
-