gamnit: make `SpriteSet` public so clients can use its services
[nit.git] / lib / posix_ext.nit
index c89de52..8dd83c3 100644 (file)
@@ -18,5 +18,6 @@
 module posix_ext
 
 redef extern class Passwd
-       fun gecos: String import NativeString.to_s `{ return NativeString_to_s(recv->pw_gecos); `}
+       # User information
+       fun gecos: String import CString.to_s `{ return CString_to_s(self->pw_gecos); `}
 end