]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/unix/ffi/bsd/bsd.factor
rename current string-mangling "char*" to "c-string". char* is now just a boring...
[factor.git] / basis / unix / ffi / bsd / bsd.factor
index bda99422fcf9488e1cc2707081928ca27d1b8779..ad323bf14af40fd07c1d338c96ea634c090c53da 100644 (file)
@@ -48,15 +48,15 @@ STRUCT: sockaddr-un
     { path char[104] } ;
 
 STRUCT: passwd
-    { pw_name char* }
-    { pw_passwd char* }
+    { pw_name c-string }
+    { pw_passwd c-string }
     { pw_uid uid_t }
     { pw_gid gid_t }
     { pw_change time_t }
-    { pw_class char* }
-    { pw_gecos char* }
-    { pw_dir char* }
-    { pw_shell char* }
+    { pw_class c-string }
+    { pw_gecos c-string }
+    { pw_dir c-string }
+    { pw_shell c-string }
     { pw_expire time_t }
     { pw_fields int } ;