refactor: add a async read/write variant to device ops, with allow async io to be...
[lunaix-os.git] / lunaix-os / libs / klibc / string / strcpy.c
index 1f7a06d08a928333909ec35d917eeaf08382c42b..88b5cb1ca2a02ab298e6f8b8a0532e59bcd0b454 100644 (file)
@@ -14,7 +14,7 @@ strcpy(char* dest, const char* src)
 }
 
 char*
 }
 
 char*
-strncpy(char* dest, const char* src, size_t n)
+strncpy(char* dest, const char* src, unsigned long n)
 {
     char c;
     unsigned int i = 0;
 {
     char c;
     unsigned int i = 0;