code cleanup: confirm include guards to our convention

This commit is contained in:
Campbell Barton
2013-08-19 14:40:16 +00:00
parent b8ce663706
commit 20fdea918d
3 changed files with 9 additions and 9 deletions

View File

@@ -26,8 +26,8 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#ifndef ATOMIC_OPS_H__ #ifndef __ATOMIC_OPS_H__
#define ATOMIC_OPS_H__ #define __ATOMIC_OPS_H__
#include <assert.h> #include <assert.h>
@@ -304,4 +304,4 @@ atomic_sub_u(unsigned *p, unsigned x)
#endif #endif
} }
#endif /* ATOMIC_OPS_H__ */ #endif /* __ATOMIC_OPS_H__ */

View File

@@ -26,8 +26,8 @@
* *
*/ */
#ifndef BLI_MATH_INTERP #ifndef __BLI_MATH_INTERP__
#define BLI_MATH_INTERP #define __BLI_MATH_INTERP__
void BLI_bicubic_interpolation_fl(const float *buffer, float *output, int width, int height, void BLI_bicubic_interpolation_fl(const float *buffer, float *output, int width, int height,
int components, float u, float v); int components, float u, float v);
@@ -41,4 +41,4 @@ void BLI_bilinear_interpolation_fl(const float *buffer, float *output, int width
void BLI_bilinear_interpolation_char(const unsigned char *buffer, unsigned char *output, int width, int height, void BLI_bilinear_interpolation_char(const unsigned char *buffer, unsigned char *output, int width, int height,
int components, float u, float v); int components, float u, float v);
#endif #endif /* __BLI_MATH_INTERP__ */

View File

@@ -28,8 +28,8 @@
* *
*/ */
#ifndef IMB_COLORMANAGEMENT_INTERN_H #ifndef __IMB_COLORMANAGEMENT_INTERN_H__
#define IMB_COLORMANAGEMENT_INTERN_H #define __IMB_COLORMANAGEMENT_INTERN_H__
#include "DNA_listBase.h" #include "DNA_listBase.h"
@@ -97,4 +97,4 @@ void colorspace_set_default_role(char *colorspace, int size, int role);
void colormanage_imbuf_set_default_spaces(struct ImBuf *ibuf); void colormanage_imbuf_set_default_spaces(struct ImBuf *ibuf);
void colormanage_imbuf_make_linear(struct ImBuf *ibuf, const char *from_colorspace); void colormanage_imbuf_make_linear(struct ImBuf *ibuf, const char *from_colorspace);
#endif /* IMB_COLORMANAGEMENT_INTERN_H */ #endif /* __IMB_COLORMANAGEMENT_INTERN_H__ */