Browse Source

Prefix in header protection

master
Andrea Luzzardi 17 years ago
parent
commit
2249177bad
3 changed files with 9 additions and 9 deletions
  1. +3
    -3
      pam_usb/src/hal.h
  2. +3
    -3
      pam_usb/src/log.h
  3. +3
    -3
      pam_usb/src/otp.h

+ 3
- 3
pam_usb/src/hal.h View File

@ -15,8 +15,8 @@
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef HAL_H_
# define HAL_H_
#ifndef PUSB_HAL_H_
# define PUSB_HAL_H_
DBusConnection *pusb_hal_dbus_connect(void);
void pusb_hal_dbus_disconnect(DBusConnection *dbus);
@ -34,4 +34,4 @@ char *pusb_hal_find_item(LibHalContext *ctx,
const char *value,
...);
#endif /* !HAL_H_ */
#endif /* !PUSB_HAL_H_ */

+ 3
- 3
pam_usb/src/log.h View File

@ -15,11 +15,11 @@
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef LOG_H_
# define LOG_H_
#ifndef PUSB_LOG_H_
# define PUSB_LOG_H_
void log_debug(const char *fmt, ...);
void log_error(const char *fmt, ...);
void log_verbose(const char *fmt, ...);
#endif /* !LOG_H_ */
#endif /* !PUSB_LOG_H_ */

+ 3
- 3
pam_usb/src/otp.h View File

@ -15,10 +15,10 @@
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef OTP_H_
# define OTP_H_
#ifndef PUSB_OTP_H_
# define PUSB_OTP_H_
int pusb_otp_check(t_pusb_options *opts, LibHalContext *ctx,
LibHalDrive *drive);
#endif /* !OTP_H_ */
#endif /* !PUSB_OTP_H_ */

Loading…
Cancel
Save