tsort: Minor style fix

This commit is contained in:
sin 2016-02-17 08:27:41 +00:00
parent b44d4d8edd
commit 1e81e214d6

View File

@ -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;