Drop support for old readonly adjtime

This commit is contained in:
Miroslav Lichvar
2011-06-06 16:13:12 +02:00
parent da1097095c
commit 50de930730
3 changed files with 16 additions and 39 deletions

View File

@@ -96,17 +96,6 @@ TMX_GetFrequency(double *freq)
return result;
}
int
TMX_GetOffsetLeftOld(long *offset)
{
struct timex txc;
int result;
txc.modes = 0; /* pure read */
result = adjtimex(&txc);
*offset = txc.offset;
return result;
}
int
TMX_GetOffsetLeft(long *offset)
{