X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mood.c;h=d82d5a52c3b704cffd3657c9b6bad25121c5b4f2;hp=732df0a32f8d1e7d19d08f04c773dc5026589caf;hb=c41a04fb296e068ebfec78bba9678bf15daea896;hpb=a365b8263a0d7a1673699bdf454677c95b38eb95 diff --git a/mood.c b/mood.c index 732df0a3..d82d5a52 100644 --- a/mood.c +++ b/mood.c @@ -79,13 +79,13 @@ struct mood { static struct mood *current_mood; /** - * Rough approximation to sqrt. + * Rough approximation to sqrt. * - * \param x Integer of which to calculate the sqrt. + * \param x Integer of which to calculate the sqrt. * - * \return An integer res with res * res <= x. + * \return An integer res with res * res <= x. */ -static uint64_t int_sqrt(uint64_t x) +__a_const static uint64_t int_sqrt(uint64_t x) { uint64_t op, res, one = 1; op = x;