/*
  aptajm.c by Marcin Ulikowski <elceef@itsec.pl>
  ----------------------------------------------
  Tested with Linux 2.2 and 2.4

  (root@osiris ~)# gcc -Wall -c -O2 aptajm.c
  (root@osiris ~)# insmod aptajm.o

  Have fun ;-)
*/

#define MODULE
#define __KERNEL__

#include <linux/module.h>
#include <linux/version.h>

MODULE_LICENSE("GPL");

#define INCREASE 60*60*24*100 * 10  /* 10 days */

extern unsigned long int jiffies;

int init_module(void) {
  jiffies += INCREASE;
  return 666;
}

void cleanup_module(void) {
}


