]> Joshua Wise's Git repositories - netwatch.git/blobdiff - include/minilib.h
second arg of memcpy should be const
[netwatch.git] / include / minilib.h
index aa8bf7364d16220e854c019518178fd0479060b0..3704bca217e9a5caa3d554acd484e01f90d9c247 100644 (file)
@@ -3,7 +3,7 @@
 
 #include <stdarg.h>
 
-extern void memcpy(void *dest, void *src, int bytes);
+extern void memcpy(void *dest, const void *src, int bytes);
 extern void memmove(void *dest, void *src, int bytes);
 extern int memcmp(const char *a2, const char *a1, int bytes);
 extern int strcmp(const char *a2, const char *a1);
This page took 0.015577 seconds and 4 git commands to generate.