1
0
mirror of git://projects.qi-hardware.com/ben-scans.git synced 2024-11-21 21:05:56 +02:00

The #endif at end of header file must have a comment saying /* !name */

- solidify/array.h, solidify/histo.h, solidify/level.h, solidify/solid.h,
  solidify/util.h" comment at final #endif said /* name */, not /* !name */
This commit is contained in:
Werner Almesberger 2010-09-24 18:58:55 -03:00
parent a7105addcb
commit 0c494069c3
5 changed files with 5 additions and 5 deletions

View File

@ -49,4 +49,4 @@ static inline int get_bounded(const struct array *a, int x, int y)
}
#endif /* ARRAY_H */
#endif /* !ARRAY_H */

View File

@ -26,4 +26,4 @@ struct histo *make_histo(struct array *a);
void free_histo(struct histo *h);
int median(const struct histo *h);
#endif /* HISTO_H */
#endif /* !HISTO_H */

View File

@ -20,4 +20,4 @@
void level(GtkWidget *canvas, struct face *f);
#endif /* LEVEL_H */
#endif /* !LEVEL_H */

View File

@ -21,4 +21,4 @@ struct solid {
void povray(const struct solid *s);
#endif /* SOLID_H */
#endif /* !SOLID_H */

View File

@ -28,4 +28,4 @@
void draw_circle(GdkDrawable *da, GdkGC *gc, int x, int y, int r);
#endif /* UTIL_H */
#endif /* !UTIL_H */