]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/dev/ppc/stubs.c
xnu-1504.7.4.tar.gz
[apple/xnu.git] / bsd / dev / ppc / stubs.c
index b6ee78d98947b23cd366e090043d973dbc58ab69..55e2f0170335080217b86edccc2189d083e85d0f 100644 (file)
@@ -42,6 +42,8 @@
 #include <kern/task.h>
 #include <vm/vm_map.h>
 
+extern void    *get_bsduthreadarg(thread_t);
+extern int     *get_bsduthreadrval(thread_t);
 
 /* 
  * copy a null terminated string from one point to another in 
@@ -58,7 +60,8 @@ int
 copystr(const void *vfrom, void *vto, size_t maxlen, size_t *lencopied)
 {
     register unsigned l;
-       caddr_t from, to;
+       const char *from;
+       char *to;
 
        from = vfrom;
        to = vto;