comparison arogue7/eat.c @ 225:4f6e056438eb

Merge the GCC5 and build fix branches.
author John "Elwin" Edwards
date Wed, 02 Mar 2016 21:28:34 -0500
parents f9ef86cf22b2
children
comparison
equal deleted inserted replaced
224:4d0f53998e8a 225:4f6e056438eb
18 /* 18 /*
19 * eat: 19 * eat:
20 * He wants to eat something, so let him try 20 * He wants to eat something, so let him try
21 */ 21 */
22 22
23 eat() 23 void
24 eat(void)
24 { 25 {
25 register struct linked_list *item; 26 register struct linked_list *item;
26 int which; 27 int which;
27 unsigned long temp; 28 unsigned long temp;
28 29