Commit a2e4d69c authored by Maxwell F. (Max) Chen's avatar Maxwell F. (Max) Chen
Browse files

formatting

parent 42c9c5eb
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
#ifndef __VEC_LIST_H__ #ifndef __VEC_LIST_H__
#define __VEC_LIST_H__ #define __VEC_LIST_H__
#include <stddef.h>
#include "vector.h" #include "vector.h"
#include <stddef.h>
/** /**
* A growable array of vectors, stored as pointers to malloc()ed vectors. * A growable array of vectors, stored as pointers to malloc()ed vectors.
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
* vector_t is defined here instead of vector.c because it is passed *by value*. * vector_t is defined here instead of vector.c because it is passed *by value*.
*/ */
typedef struct { typedef struct {
double x; double x;
double y; double y;
} vector_t; } vector_t;
/** /**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment