diff options
Diffstat (limited to 'src/backend/tioga/Varray.h')
-rw-r--r-- | src/backend/tioga/Varray.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tioga/Varray.h b/src/backend/tioga/Varray.h index aed53855a41..cf7173159c0 100644 --- a/src/backend/tioga/Varray.h +++ b/src/backend/tioga/Varray.h @@ -15,7 +15,7 @@ typedef struct _varray size_t maxObj; /* max. number of objects in this array */ size_t size; /* size of each element in the array */ void *val; /* array of elements */ -} Varray; +} Varray; /* type for custom copying function */ typedef void (*CopyingFunct) (void *from, void *to); @@ -45,4 +45,4 @@ typedef void (*CopyingFunct) (void *from, void *to); extern Varray *NewVarray(size_t nobj, size_t size); extern int AppendVarray(Varray * array, void *value, CopyingFunct copy); -#endif /* _VARRAY_H_ */ +#endif /* _VARRAY_H_ */ |