index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-11-01 10:26:45 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-11-01 10:26:45 -0500 |
commit | a4ce3edf95f148bc6eac16b6edd9bc281c7745af (patch) | |
tree | ae7dc55d73ae12a3214c14ccaa4d37084a0e37c2 /lib/libalpm/util.h | |
parent | d5f0395dc13fb305e75a5e78de57e148d87f12d7 (diff) | |
parent | d98ff04cc933253b7221fc170813f7d2365d3289 (diff) |
-rw-r--r-- | lib/libalpm/util.h | 7 |
diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index 400a4eeb..8d20a281 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -74,6 +74,13 @@ #define CHECK_HANDLE(handle, action) do { if(!(handle)) { action; } (handle)->pm_errno = 0; } while(0) +/** Standard buffer size used throughout the library. */ +#ifdef BUFSIZ +#define ALPM_BUFFER_SIZE BUFSIZ +#else +#define ALPM_BUFFER_SIZE 8192 +#endif + /** * Used as a buffer/state holder for _alpm_archive_fgets(). */ |