Skip to content

Commit

Permalink
Normalize header guard for getopt.hh
Browse files Browse the repository at this point in the history
  • Loading branch information
kpu committed Feb 19, 2014
1 parent 9a9f7d8 commit c090f0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions util/getopt.hh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Code given out at the 1985 UNIFORUM conference in Dallas.
#endif
#ifndef __GNUC__

#ifndef _WINGETOPT_H_
#define _WINGETOPT_H_
#ifndef UTIL_GETOPT_H
#define UTIL_GETOPT_H

#ifdef __cplusplus
extern "C" {
Expand All @@ -28,6 +28,6 @@ extern int getopt(int argc, char **argv, char *opts);
}
#endif

#endif /* _GETOPT_H_ */
#endif /* UTIL_GETOPT_H */
#endif /* __GNUC__ */

0 comments on commit c090f0b

Please sign in to comment.