/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/DynamicArray.h

  • Committer: Gustav Hartvigsson
  • Date: 2016-02-02 09:21:32 UTC
  • mto: This revision was merged to the branch mainline in revision 127.
  • Revision ID: gustav.hartvigsson@gmail.com-20160202092132-ap1peq2rvl1go9up
* Using
   #ifndef __H_FOO__
   #define __H_FOO__
   ...
   #endif
   is for scrubs.
   Now using #pragma once like a sane person... :-)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
THE SOFTWARE.
21
21
*/
22
22
 
23
 
#ifndef __H_DYNAMIC_ARRAY__
24
 
#define __H_DYNAMIC_ARRAY__
25
23
#include <stdlib.h>
26
24
#include "defs.h"
27
25
#include "Func.h"
229
227
/** @} */
230
228
 
231
229
S_END_DECLS
232
 
 
233
 
#endif /* #define __H_DYNAMIC_ARRAY__ */