sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 1e81e214d6827cd8acf863f28e91547c94fd2220
parent b44d4d8edd2d57d2b757436e4a958b8c648c0b63
Author: sin <sin@2f30.org>
Date:   Wed, 17 Feb 2016 08:27:41 +0000

tsort: Minor style fix

Diffstat:
Mtsort.c | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tsort.c b/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;