X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mood.c;h=d82d5a52c3b704cffd3657c9b6bad25121c5b4f2;hp=732df0a32f8d1e7d19d08f04c773dc5026589caf;hb=4434989abcd113f73ca5217c3a9ecc74ce2eb1db;hpb=b62e2796b85c7d7f3138fe729f4637853e0fafe0 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;