If you just want a cron job that runs once per hour by default, you can use hook_hourly().

Example

// Easy-hook, uses rule: 0 * * * *
function mymodule_hourly() {
  // Do some stuff
}