X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Futil.h;h=2abf8905c943fa219b3f4540613af42344002e08;hb=7be8d1462a207bda809cd7553c5d76c6ebc4dda2;hp=73728ab50efaa23c7b7439edb01f741c245488d7;hpb=a18f0a95bc9a457e4d2d00c702b746f29c2662b1;p=sbcl.git diff --git a/src/runtime/util.h b/src/runtime/util.h index 73728ab..2abf890 100644 --- a/src/runtime/util.h +++ b/src/runtime/util.h @@ -35,6 +35,6 @@ voidacc { /* the accumulator itself, to be treated as an opaque data type */ } voidacc; int voidacc_ctor(voidacc*); /* the ctor, returning 0 for success */ int voidacc_acc(voidacc*, void*); /* Accumulate an element into result, - * returning 0 for success. */ + * returning 0 for success. */ void** voidacc_give_away_result(voidacc*); /* giving away ownership */ void voidacc_dtor(voidacc*); /* the dtor */