tsort: Minor style fix

This commit is contained in:
sin 2016-02-17 08:27:41 +00:00
parent b44d4d8edd
commit 1e81e214d6
1 changed files with 2 additions and 4 deletions

View File

@ -17,14 +17,12 @@
struct vertex; struct vertex;
struct edge struct edge {
{
struct vertex *to; struct vertex *to;
struct edge *next; struct edge *next;
}; };
struct vertex struct vertex {
{
char *name; char *name;
struct vertex *next; struct vertex *next;
struct edge edges; struct edge edges;