~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/algorithm/crc32.h

  • Committer: Brian Aker
  • Date: 2011-03-14 05:40:28 UTC
  • Revision ID: brian@tangent.org-20110314054028-jhey35e5la4nfl4w
Mass removal of ifdef/endif in favor of pragma once.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 * src/usr.bin/cksum/crc32.c.
32
32
 */
33
33
 
34
 
#ifndef DRIZZLED_ALGORITHM_CRC32_H
35
 
#define DRIZZLED_ALGORITHM_CRC32_H
 
34
#pragma once
36
35
 
37
36
#ifdef HAVE_SYS_TYPES_H
38
37
# include <sys/types.h>
125
124
} /* namespace algorithm */
126
125
} /* namespace drizzled */
127
126
 
128
 
#endif /* DRIZZLED_ALGORITHM_CRC32_H */