fchown
extern int fchown(int fd, uid_t owner, gid_t group);
if (fchown(realFD, st->st_uid, (gid_t)-1) < 0)
if (fchown(realFD, (uid_t)-1, st->st_gid) < 0)
HIDDEN_FUNCTION(fchown);