tsort: Minor style fix
This commit is contained in:
parent
b44d4d8edd
commit
1e81e214d6
6
tsort.c
6
tsort.c
@ -17,14 +17,12 @@
|
||||
|
||||
struct vertex;
|
||||
|
||||
struct edge
|
||||
{
|
||||
struct edge {
|
||||
struct vertex *to;
|
||||
struct edge *next;
|
||||
};
|
||||
|
||||
struct vertex
|
||||
{
|
||||
struct vertex {
|
||||
char *name;
|
||||
struct vertex *next;
|
||||
struct edge edges;
|
||||
|
Loading…
x
Reference in New Issue
Block a user