Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Made the void() functions trusted.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Jan 6, 2013
1 parent 2552b01 commit ca5d462
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/core/sys/posix/grp.d
Expand Up @@ -115,20 +115,20 @@ void setgrent(void);
version( linux )
{
group* getgrent();
void endgrent();
void setgrent();
@trusted void endgrent();
@trusted void setgrent();
}
else version( OSX )
{
group* getgrent();
void endgrent();
void setgrent();
@trusted void endgrent();
@trusted void setgrent();
}
else version( FreeBSD )
{
group* getgrent();
void endgrent();
void setgrent();
@trusted void endgrent();
@trusted void setgrent();
}
else
{
Expand Down

0 comments on commit ca5d462

Please sign in to comment.