Changeset 4505

Show
Ignore:
Timestamp:
06/28/07 11:02:12 (6 years ago)
Author:
khali
Message:

Delete needless forward declarations and wrapper.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/branches/lm-sensors-3.0.0/prog/sensors/chips.c

    r4503 r4505  
    2727#include "lib/sensors.h" 
    2828 
    29 void print_label(const char *label, int space); 
    30 static inline float deg_ctof( float ); 
    31  
    3229extern int fahrenheit; 
    3330extern char degstr[5]; 
    3431 
    35 inline float deg_ctof( float cel ) 
     32static inline float deg_ctof(float cel) 
    3633{ 
    3734   return ( cel * ( 9.0F / 5.0F ) + 32.0F ); 
     
    124121} 
    125122 
    126 void print_vid_info(const sensors_chip_name *name, int f_vid, int f_vrm) 
    127 { 
    128   print_vid_info_real(name, f_vid, f_vrm, 10); 
    129 }        
    130  
    131123void print_unknown_chip(const sensors_chip_name *name) 
    132124{