Re: [PATCH v2] util-linux: add minimal uuidgen implementation
Ron Yorston via busybox <[email protected]>
| Newsgroups | gmane.linux.busybox |
|---|---|
| Message-ID | <697d29e4.YhV2D3M8LcT0xcMk%[email protected]> |
Osama Abdelkader via busybox <[email protected]> wrote: >+ printf("%s\n", id.uuid); Or save 6 bytes with: >+ puts(id.uuid); Ron