X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=src%2Fint%2Fqueue.h;h=49cbd1afa43893b4b5557009580e5d957c7ce23e;hb=bb5fb3ccafc4e5cd0dd55134588630c263d0cb9c;hp=7682c00f2dc7581a9374e6542790577367dadcf3;hpb=7a277153cc72eed9f152af09f22e680db3ec6563;p=vlp.git diff --git a/src/int/queue.h b/src/int/queue.h index 7682c00..49cbd1a 100644 --- a/src/int/queue.h +++ b/src/int/queue.h @@ -2,9 +2,10 @@ typedef lword qelem; typedef qelem selem; -struct queuelem { qelem elem; - struct queuelem *next; - }; +struct queuelem { + qelem elem; + struct queuelem *next; +}; typedef struct queuelem *queue; typedef queue stack;