| OLD | NEW |
| 1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 | 4 |
| 5 #ifdef DEBUG | 5 #ifdef DEBUG |
| 6 static const char CVS_ID[] = "@(#) $RCSfile: pkibase.c,v $ $Revision: 1.36 $ $Da
te: 2012/07/27 21:41:52 $"; | 6 static const char CVS_ID[] = "@(#) $RCSfile: pkibase.c,v $ $Revision: 1.35 $ $Da
te: 2012/05/17 21:39:40 $"; |
| 7 #endif /* DEBUG */ | 7 #endif /* DEBUG */ |
| 8 | 8 |
| 9 #ifndef DEV_H | 9 #ifndef DEV_H |
| 10 #include "dev.h" | 10 #include "dev.h" |
| 11 #endif /* DEV_H */ | 11 #endif /* DEV_H */ |
| 12 | 12 |
| 13 #ifndef PKIM_H | 13 #ifndef PKIM_H |
| 14 #include "pkim.h" | 14 #include "pkim.h" |
| 15 #endif /* PKIM_H */ | 15 #endif /* PKIM_H */ |
| 16 | 16 |
| (...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1227 } | 1227 } |
| 1228 | 1228 |
| 1229 NSS_IMPLEMENT PRTime | 1229 NSS_IMPLEMENT PRTime |
| 1230 NSSTime_GetPRTime ( | 1230 NSSTime_GetPRTime ( |
| 1231 NSSTime *time | 1231 NSSTime *time |
| 1232 ) | 1232 ) |
| 1233 { | 1233 { |
| 1234 return time->prTime; | 1234 return time->prTime; |
| 1235 } | 1235 } |
| 1236 | 1236 |
| OLD | NEW |