diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-03-23 01:34:05 +0100 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-03-23 01:34:05 +0100 |
commit | 7685169385d590731009b83aaed6d449efb7e089 (patch) | |
tree | 8c281c8d81c2fe4e3c2c5ee6b7979f93aac97978 /src/solar.h | |
parent | [redshift-gtk] Add BSD support to proc title setting (diff) | |
download | redshift-ng-7685169385d590731009b83aaed6d449efb7e089.tar.gz redshift-ng-7685169385d590731009b83aaed6d449efb7e089.tar.bz2 redshift-ng-7685169385d590731009b83aaed6d449efb7e089.tar.xz |
Fix #22: remove initial underscore from include guards
Diffstat (limited to 'src/solar.h')
-rw-r--r-- | src/solar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/solar.h b/src/solar.h index b5554ef..5ff6ed6 100644 --- a/src/solar.h +++ b/src/solar.h @@ -17,8 +17,8 @@ Copyright (c) 2010 Jon Lund Steffensen <jonlst@gmail.com> */ -#ifndef _SOLAR_H -#define _SOLAR_H +#ifndef REDSHIFT_SOLAR_H +#define REDSHIFT_SOLAR_H #include "time.h" @@ -48,4 +48,4 @@ typedef enum { double solar_elevation(double date, double lat, double lon); void solar_table_fill(double date, double lat, double lon, double *table); -#endif /* ! _SOLAR_H */ +#endif /* ! REDSHIFT_SOLAR_H */ |