Whats in your paste?

#include <linux/module.h>
#include <linux/init.h>
#include <linux/proc_fs.h>
#include <asm/uaccess.h>


static unsigned long long sum;

static int show_sum(char *buffer, char **start, off_t offset, int length) {
int size;

size = sprintf(buffer, "%lld\n", sum);
*start = buffer + offset;
size -= offset;
return (size > length) ? length : (size > 0) ? size : 0;
}
 
Everyday, I come into this thread hoping there is something on my clipboard, and everyday it's empty.

lIfE sUx!!11!!one11!
 
spam.jpg
 
[QUOTE="dude_se, post: 0"]f**k the clothes. petrol is sexy
... actually best stick to the clothes. i might get excited if i see diesel :p[/QUOTE].
 
Back
Top Bottom