~ubuntu-branches/ubuntu/intrepid/djbdns/intrepid-security

« back to all changes in this revision

Viewing changes to taia_uint.c

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2008-03-02 23:22:04 UTC
  • Revision ID: james.westby@ubuntu.com-20080302232204-wa3owprcpeiyu8kj
Tags: upstream-1.05
ImportĀ upstreamĀ versionĀ 1.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "taia.h"
 
2
 
 
3
/* XXX: breaks tai encapsulation */
 
4
 
 
5
void taia_uint(struct taia *t,unsigned int s)
 
6
{
 
7
  t->sec.x = s;
 
8
  t->nano = 0;
 
9
  t->atto = 0;
 
10
}