Skip to content

Commit

Permalink
Remove unnecessary "sys/" from errno.h include.
Browse files Browse the repository at this point in the history
Looks like it's not needed, and most systems' manpages say to just
include <errno.h>.
  • Loading branch information
bzbarsky-apple committed Mar 11, 2021
1 parent 70449a4 commit 4fa8c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/shell/shell_common/cmd_ping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include <stdio.h>
#include <stdlib.h>
#include <sys/errno.h>
#include <errno.h>

#include <core/CHIPCore.h>
#include <messaging/ExchangeMgr.h>
Expand Down

0 comments on commit 4fa8c90

Please sign in to comment.