downloads for math.h and avr/eeprom.h

Hi folks, sorry to be a bother but I am trying to compile and upload the CNC UNO Sketch but I am getting an error because these two files "avr/eeprom.h" and "math.h" are not in the Aduino library.
I have spent the whole day (from 6:00 this morning) and cannot find one site that will allow me to download these two files.
Maybe I am a bit thick in the head (well I am going on 72 so that fat is beginning to grow over the brains) or something but I need help.
I think if I am pointed in the right direction I may be able to figure it out.
Thanks in advance guys

If you downloaded the IDE, you have these files.

I have the latest Arduino IDE 1.6.5 and searched through all the sketches in the ide and saw no such sketch.
When I load the program into the IDE and look at it you can see that the two files are not included where the '#include math.h" and "#include avr/eeprom.h" that is why I assumed that it was not there.
How do I access it
Thank you

If you are running 1.6.5 you should have no problem compiling this in your IDE:

#include "math.h"
#include "avr/eeprom.h"

void setup() {}
void loop() {}

Thanks a lot guys I had to fix two problems in the sketch and tried compiling it again and it did.
The first was, I changed the line #include <math.h> to #include "math.h"
and the next line from #include <avr/eeprom.h> to #include "avr/eeprom.h" and right away the colours changed in the lines meaning they were included

Then there was an error with The stepper sketch which I had to change from #include "stepper.h"
to #include "Stepper.h" and it compiled so all I have to do now is to try running the sketch but will have to wait a while as my CNC parts are on order

Thanks again guys