~ubuntu-branches/ubuntu/dapper/xscreensaver/dapper

« back to all changes in this revision

Viewing changes to hacks/squiral.c

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2005-10-11 21:00:42 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20051011210042-u7q6zslgevdxspr3
Tags: 4.21-4ubuntu17
updated pt_BR again, fixed to UTF-8 

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#include "yarandom.h"
16
16
 
17
17
#define R(x)  (abs(random())%x)
18
 
#define PROB(x) (abs(random())<(x*(double)RAND_MAX))
 
18
#define PROB(x) (frand(1.0) < (x))
19
19
 
20
20
#define NCOLORSMAX 255
21
21
static int width, height, count, cycle;