mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-19 03:53:51 -04:00
bug fixed in commit b9dc6f65bc ("fix a fencepost error in pipe_advance()")
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
9 lines
125 B
C
9 lines
125 B
C
#define _GNU_SOURCE
|
|
#include <fcntl.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
splice(0, 0, 1, 0, 1<<30, 0);
|
|
return 0;
|
|
}
|