Overview
Comment: | Freecolor 0.9.2 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.9.2 |
Files: | files | file ages | folders |
SHA1: |
a92cdd84484ed7900476017e0e093528 |
User & Date: | rkeene on 2014-01-21 10:11:40 |
Other Links: | manifest | tags |
Context
2016-01-26
| ||
01:08 | Updated to use fixed-width types and use the "mem_units" member if it is available check-in: 648d0caff0 user: rkeene tags: trunk | |
2014-01-21
| ||
10:11 | Freecolor 0.9.2 check-in: a92cdd8448 user: rkeene tags: trunk, 0.9.2 | |
10:11 | Updated license check-in: 45e2c52074 user: rkeene tags: trunk | |
Changes
Modified freecolor.c from [3deabf0e86] to [bb0b5f3d15].
︙ | ︙ | |||
46 47 48 49 50 51 52 | #include <stdlib.h> #include <stdio.h> #ifndef NO_GETOPT #include <getopt.h> #endif #define BARLEN 35 #define HEADERLEN 14 | | | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | #include <stdlib.h> #include <stdio.h> #ifndef NO_GETOPT #include <getopt.h> #endif #define BARLEN 35 #define HEADERLEN 14 #define VERSION "0.9.2" extern char *optarg; extern int optind, opterr, optopt; struct freecolor_meminfo { unsigned long totalram; /* Total usable main memory size */ unsigned long freeram; /* Available memory size */ |
︙ | ︙ |