rename include file wrapper, #ifndef CONST -> CONST_H

This commit is contained in:
rlar 2010-09-08 18:23:35 +00:00
parent af4589529d
commit 5e64936a3f
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2010-09-08 Robert Larice
* src/include/const.h :
rename include file wrapper, #ifndef CONST -> CONST_H
2010-09-08 Robert Larice
* src/frontend/display.c ,
* src/include/ftedev.h :

View File

@ -4,8 +4,8 @@ Author: 1985 Thomas L. Quarles
**********/
/*
*/
#ifndef CONST
#define CONST
#ifndef CONST_H
#define CONST_H
#define CHARGE (1.6021918e-19)
#define CONSTCtoK (273.15)
@ -20,4 +20,4 @@ Author: 1985 Thomas L. Quarles
extern double CONSTKoverQ;
extern double CONSTe;
#endif /*CONST*/
#endif